event_map.proto 461 B

123456789101112131415161718192021
  1. syntax = "proto3";
  2. enum GridEvent {
  3. GetGridData = 0;
  4. GetGridBlocks = 1;
  5. GetFields = 10;
  6. UpdateField = 11;
  7. CreateField = 12;
  8. DeleteField = 13;
  9. SwitchToField = 14;
  10. DuplicateField = 15;
  11. GetEditFieldContext = 16;
  12. NewSelectOption = 30;
  13. GetSelectOptionContext = 31;
  14. ApplySelectOptionChangeset = 32;
  15. CreateRow = 50;
  16. GetRow = 51;
  17. GetCell = 70;
  18. UpdateCell = 71;
  19. ApplySelectOptionCellChangeset = 72;
  20. }