JQGrid:使用Checkbox启用/禁用文本框

时间:2013-05-03 07:25:43

标签: jquery jqgrid struts2-jquery-grid

<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 个答案:

答案 0 :(得分:0)

var checkbx="<input type="checkbox" id="myCheckbox"/>";
$('gridColumn ').html(checkbx);
if($('#myCheckbox').prop('checked')==true)
$('#txtInput').attr('disabled',true)
else
$('#txtInput').attr('disabled',false)