How To Mark All Records in a Form Grid
step1: Create one check box in form group control
In Properties give datasource name and label name for checkbox field.
step2: override the onclicked method in checkbox
step3: Paste the following code in that onclicked method
public void clicked()
{
#task;
super();
element.task(#taskSelectAll);
}
Comments
Post a Comment