Hi ! there are any one that can help ?
is possible to hide checkbox from multirecord ?
is possible to hide capture lens if another field have a flag on o of hide and show
please regards
Hi ! there are any one that can help ?
is possible to hide checkbox from multirecord ?
is possible to hide capture lens if another field have a flag on o of hide and show
please regards
Hi,
Add this line in onScriptInit and onNavigate
[LineNumber] = 0;
in onRecordLoad
[LineNumber] += 1;
$line = [LineNumber];
if ($needToRemoveCheckbox) {
echo "
<script>
$(document).ready(function() {
$('#idVertRow" . ($line) . " input:checkbox').hide();
});
</script>
";
}
You will have to disable Ajax Error Output in Setting
I didn’t take the time to find why Ajax in unhappy with it.
Also set your Global Variable [LineNumber] as OUT instead of IN