Check Box

Hi

i have problem in grid ,The grid contain multiple records the record has the enum value when i select any record with particular checkbox then i need total record details…?

Hi Malathi,

You can get marked record details by using MultiSelectionHelper class.
You can use that class in the grid data source selectionChanged method.

Thanks,
Hari

Thanks hari,

u can send code for the this…

Hi Malathi,

Please use the below code.

public void selectionChanged()
{
MultiSelectionHelper headerSelection;
SalesTable st;

headerSelection = MultiSelectionHelper::construct();
headerSelection.parmDatasource(salesTable_ds);
st = headerSelection.getFirst();

while (st.RecId)
{
// Here, you can use your logic
info(st.SalesId);
st = headerSelection.getNext();
}
}

Thanks,
Hari

Thank you hari…