OnGridPartRender Event
Description
This event fires after all of the HTML for the Grid Part has been computed. It allows you to modify the HTML that was computed.
Discussion
You can perform string manipulation operations on e.html to change the HTML that gets rendered.
The following variables are available to you in the event:
- Variable
- Description
- e.html
HTML for the grid part.
Setting State Variables
You can also set state variables in this event. The value of any state variables will be available in all subsequent ajax callbacks (in the e.__si2 object).
To set a state variable:
e._state.myvar1 = "value1" e._state.myvar2 = "value2"