JQGrid: включить / отключить текстовое поле с помощью флажка
<sjg:gridColumn name="newAction" index="newAction" title="New Action:" hidden="true"
hidedlg="true" editable="true" edittype="text" sortable="false" editrules="{edithidden:true,required:true}"/>
Как добавить флажок в той же строке "newAction ", чтобы я мог включить / отключить текстовое поле с помощью флажка?
1 ответ
var checkbx="<input type="checkbox" id="myCheckbox"/>";
$('gridColumn ').html(checkbx);
if($('#myCheckbox').prop('checked')==true)
$('#txtInput').attr('disabled',true)
else
$('#txtInput').attr('disabled',false)