I need a listgrid with +/-
button so that I can use these buttons for adding or deleting list grid.
ListGrid listGrid = new ListGrid();
listGrid.setWidth(230);
listGrid.setHeight(224);
listGrid.setDataSource(coursesDS);
listGrid.setCanDragRecordsOut(true);
listGrid.setDragDataAction(DragDataAction.COPY);
In this way only listgrid will be created, but is there any implicity functionality for increment listgrid by providing button specific to listgrid?
Or I need to create explicitly image button and have to write code so that I can add number of listgrids when click on image(add) button?
Please help. Thanks.