ENABLE OR DISABLE THE ROWS IN GRID based On CHECKBOX
STEP 1:
Create a Table with Some Fields.Add all fields into FieldGroup except CheckBox Field.
STEP 2:
Creae a Form and add a table as Datasource.
STEP 3:
Drag and drop the Group and CheckBox Field into Design node.
STEP 4:
Write a code in CheckBox Control level modified() method:
public boolean modified()
{
boolean ret;
EnableDisableRows enableDisableRows11;
ret = super();
if(this.value()==boolean::false)
{
Group1.enableChilds(true);
}
else
{
Group1.enableChilds(false);
}
return ret;
}
STEP 5:
We can get the output,,
STEP 1:
Create a Table with Some Fields.Add all fields into FieldGroup except CheckBox Field.
STEP 2:
Creae a Form and add a table as Datasource.
STEP 3:
Drag and drop the Group and CheckBox Field into Design node.
STEP 4:
Write a code in CheckBox Control level modified() method:
public boolean modified()
{
boolean ret;
EnableDisableRows enableDisableRows11;
ret = super();
if(this.value()==boolean::false)
{
Group1.enableChilds(true);
}
else
{
Group1.enableChilds(false);
}
return ret;
}
STEP 5:
We can get the output,,