public enum OptionKeysD
RGOD_CssClass | 0 | Defining the CSS class which belongs to the field. |
RGOD_Style | 1 | Defining the style which belongs to the field. |
RGOD_Attr | 2 |
Defining attributes using Anonymous Types. e.g. options[clientRec[i].ClientName] = new { RGOD_Attr = new { title = "Test title" } }; |
RGOD_Tooltip | 3 |
Set text for jQuery UI Tooltip.
In case of a form view, the CreateDetailsHtml() function can be passed in the RGServiceParams.InitParam. e.g. InitParams["RGOD_Tooltip"] = Dictionary => (ClientName, value) |
RGOD_Remove | 4 |
If set true field will not show on client side. It is usable in template mode. e.g. options[clientRec[i].ClientName] = new { RGOD_Remove = true }; |