Use the members of this enumeration to set the value of the RenderMode property in the C1WebCommandBase class.
Namespace:
C1.Web.CommandAssembly: C1.Web.Command.2 (in C1.Web.Command.2.dll)
Syntax
C# |
---|
public enum RenderModeEnum |
Visual Basic (Declaration) |
---|
Public Enumeration RenderModeEnum |
Members
Member name | Description | |
---|---|---|
Auto |
This is the default Auto rendering mode used for the control.
It initially renders the control using JSON mode, where the page updates the control in partial rendering mode.
While in partial rendering mode, it renders using HTML mode to prevent the page from flickering.
| |
JSON |
This is the JSON rendering mode used for the control.
It renders the control as an empty control, where javascript is used to create all of its child elements on the client-side.
| |
HTML |
This is the HTML rendering mode used for the control.
It renders the control as a regular control where the HTML code of all its child elements render on the server-side.
|