Property | Type | Description | |
---|---|---|---|
GridDataModel | System | ||
Parse |
Method | Description | |
---|---|---|
Deserialize ( string json ) : |
Deserializes the specified JSON string into an instance of
|
|
Deserialize ( string json, string propertyTypeAlias ) : |
Deserializes the specified JSON string into an instance of
|
|
GetAllControls ( ) : GridControl[] |
Gets an array of all nested controls.
|
|
GetAllControls ( bool>.Func |
Gets an array of all nested controls matching the specified
|
|
GetAllControls ( string alias ) : GridControl[] |
Gets an array of all nested controls with the specified editor
|
|
GetEmptyModel ( ) : |
Gets an empty (and invalid) model. This method can be used to get a fallback value for when an actual Grid model isn't available.
|
|
GetEmptyModel ( string propertyTypeAlias ) : |
Gets an empty (and invalid) model. This method can be used to get a fallback value for when an actual Grid model isn't available.
|
|
GetHtml ( HtmlHelper helper ) : System.Web.HtmlString |
Generates the HTML for the Grid model.
|
|
GetHtml ( HtmlHelper helper, string framework ) : System.Web.HtmlString |
Generates the HTML for the Grid model.
|
Method | Description | |
---|---|---|
GridDataModel ( Newtonsoft.Json.Linq.JObject obj ) : System | ||
Parse ( Newtonsoft.Json.Linq.JObject obj ) : |
public static Deserialize ( string json ) : |
||
json | string | The JSON string to be deserialized. |
return |
public static Deserialize ( string json, string propertyTypeAlias ) : |
||
json | string | The JSON string to be deserialized. |
propertyTypeAlias | string | The alias of the property the Grid model is representing. |
return |
public GetAllControls ( bool>.Func |
||
predicate | bool>.Func | The predicate (callback function) used for comparison. |
return | GridControl[] |
public GetAllControls ( string alias ) : GridControl[] | ||
alias | string | The editor alias of controls to be returned. |
return | GridControl[] |
public static GetEmptyModel ( ) : |
||
return |
public static GetEmptyModel ( string propertyTypeAlias ) : |
||
propertyTypeAlias | string | The alias of the property the Grid model is representing. |
return |
public GetHtml ( HtmlHelper helper ) : System.Web.HtmlString | ||
helper | HtmlHelper | The HTML helper used for rendering the Grid. |
return | System.Web.HtmlString |
public GetHtml ( HtmlHelper helper, string framework ) : System.Web.HtmlString | ||
helper | HtmlHelper | The HTML helper used for rendering the Grid. |
framework | string | The framework used to render the Grid. |
return | System.Web.HtmlString |