Hi,
I am using smartGWT 2.3, and i need to have checkbox in my listgrid.
i have implimented it, but all the checkbox's are coming as checked even if the value is false.
java code is
from backend java i am passing a boolean variable.
but the value is false, but checkbox's are coming as checked.
Please help
I am using smartGWT 2.3, and i need to have checkbox in my listgrid.
i have implimented it, but all the checkbox's are coming as checked even if the value is false.
Code:
<field name="GR_DIS_HALT_KZ_VALUE_CheckBoxValue" type="boolean" /> <field name="GR_DIS_INAK_KZ_VALUE_CheckBoxValue" type="boolean" />
Code:
GR_DIS_INAK_KZ_VALUE_CheckBoxValue = new ListGridField("GR_DIS_INAK_KZ_VALUE_CheckBoxValue"," ",60); GR_DIS_INAK_KZ_VALUE_CheckBoxValue.setType(ListGridFieldType.BOOLEAN);
but the value is false, but checkbox's are coming as checked.
Please help
Comment