Ejemplo n.º 1
0
 public IGridJsEventBuilder RecordsLoaded(string value)
 {
     IGridJsEvent gridEvent = new GridJsEvent(GRID_EVENT_RECORDS_LOADED, value);
     _gridEvents.Add(gridEvent);
     return this;
 }
Ejemplo n.º 2
0
 public IGridJsEventBuilder SelectionChangedSelectedRow(string value)
 {
     IGridJsEvent gridEvent = new GridJsEvent(GRID_EVENT_SELECTION_CHANGED, value, true);
     _gridEvents.Add(gridEvent);
     return this;
 }
Ejemplo n.º 3
0
 public IGridJsEventBuilder LoadingRecords(string value)
 {
     IGridJsEvent gridEvent = new GridJsEvent(GRID_EVENT_LOADING_RECORDS, value);
     _gridEvents.Add(gridEvent);
     return this;
 }