Hi,
I have implemented a list grid. In that i want to add a checkbox in starting of each row to select and unselect full row. We have such implementation that we have to set grid.canSelectCells(true). So due to this if i use
grid.setSelectionType(SelectionStyle.SIMPLE);
grid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
then also i can not achieve this(i think this will work if canSelectcells is set to false as i have tried this and works fine for me in that case). But in my case i need to select cells also and have to add a checkbox in starting of each row to select full row. Can you suggest me something to handle this scenario?
I have implemented a list grid. In that i want to add a checkbox in starting of each row to select and unselect full row. We have such implementation that we have to set grid.canSelectCells(true). So due to this if i use
grid.setSelectionType(SelectionStyle.SIMPLE);
grid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
then also i can not achieve this(i think this will work if canSelectcells is set to false as i have tried this and works fine for me in that case). But in my case i need to select cells also and have to add a checkbox in starting of each row to select full row. Can you suggest me something to handle this scenario?
Comment