2022-03-02 22:43:04 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
enum GridEvent {
|
2022-03-06 21:22:42 +08:00
|
|
|
GetGridData = 0;
|
2022-03-17 17:25:43 +08:00
|
|
|
GetGridBlocks = 1;
|
2022-03-18 17:14:46 +08:00
|
|
|
GetFields = 10;
|
2022-03-23 22:10:31 +08:00
|
|
|
UpdateField = 11;
|
|
|
|
CreateField = 12;
|
2022-03-27 09:35:10 +08:00
|
|
|
DeleteField = 13;
|
2022-04-01 09:31:10 +08:00
|
|
|
SwitchToField = 14;
|
2022-03-27 11:14:21 +08:00
|
|
|
DuplicateField = 15;
|
2022-03-31 22:51:46 +08:00
|
|
|
GetEditFieldContext = 16;
|
2022-03-29 22:58:38 +08:00
|
|
|
CreateSelectOption = 30;
|
2022-04-05 14:25:07 +08:00
|
|
|
GetSelectOptions = 31;
|
2022-03-29 22:58:38 +08:00
|
|
|
CreateRow = 50;
|
|
|
|
GetRow = 51;
|
|
|
|
UpdateCell = 70;
|
2022-04-05 21:25:59 +08:00
|
|
|
ApplySelectOptionChangeset = 71;
|
2022-03-02 22:43:04 +08:00
|
|
|
}
|