Post
Showing posts with label grid. Show all posts
Showing posts with label grid. Show all posts
Thursday, October 29, 2015
Monday, June 29, 2015
ANGULARJS GRID
ANGULAR GRID
http://www.angulargrid.com/index.html
NG-GRID
http://angular-ui.github.io/ng-grid/
Example on Plunker:
http://plnkr.co/edit/50vJrs?p=preview
UI GRID
http://ui-grid.info/
JQX GRID
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/
http://www.angulargrid.com/index.html
NG-GRID
http://angular-ui.github.io/ng-grid/
Example on Plunker:
http://plnkr.co/edit/50vJrs?p=preview
UI GRID
http://ui-grid.info/
JQX GRID
http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/
Tuesday, February 11, 2014
The way to highlite grid's selected rows in GXT v2
public void colorLockedGridRows() {
Grid grid = gridView.getGrid();
ListStore<BeanModel> store = grid.getStore();
for (BeanModel model : store.getModels()) {
SecurityGroupVO bean = model.getBean();
if ( bean.isLocked() ) {
Element row = grid.getView().getRow(model);
row.addClassName("locked-row-background-color");
}
}
}
Grid grid = gridView.getGrid();
ListStore<BeanModel> store = grid.getStore();
for (BeanModel model : store.getModels()) {
SecurityGroupVO bean = model.getBean();
if ( bean.isLocked() ) {
Element row = grid.getView().getRow(model);
row.addClassName("locked-row-background-color");
}
}
}
Subscribe to:
Posts (Atom)