Built-in Functions

Summary

Methods Description
grid_gopage Make tableview that contain the element navigate to certain page.
grid_delete Delete the row that contain the element.
grid_toggle_select Toggle selection for the row that contain the element.
grid_edit Start editing the row which contains the element.
grid_confirm_edit Confirm editing for the row that contains the element.
grid_cancel_edit Cancel editing for the row that contains the element.
grid_confirm_insert Confirm inserting new row for the tableview that contains the element.
grid_cancel_insert Cancel inserting new row for the tableview that contains the element.
grid_insert Start inserting new row for the tableview that contains the element.
grid_refresh Make the grid that contain the element refresh.
grid_expand Make the row that contains the element expand its table details.
grid_collapse Make the row that contains the element collapse its table details.
grid_sort Sort the column with specified id.
get_row Return the object of the row that contain the element.
get_tableview Return the object of the tableview that contain the element.
get_grid Return the object of the grid that contain the element.

Methods Detail

grid_gopageTop

void grid_gopage(object html_element_object, int page_index)

Make tableview that contain the element navigate to certain page.

Show/Hide Code

Supported from version: 1.0.0.0

grid_deleteTop

void grid_delete(object html_element_object)

Delete the row that contain the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_toggle_selectTop

void grid_toggle_select(object html_element_object)

Toggle selection for the row that contain the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_editTop

void grid_edit(object html_element_object)

Start editing the row which contains the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_confirm_editTop

void grid_confirm_edit(object html_element_object)

Confirm editing for the row that contains the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_cancel_editTop

void grid_cancel_edit(object html_element_object)

Cancel editing for the row that contains the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_confirm_insertTop

void grid_confirm_insert(object html_element_object)

Confirm inserting new row for the tableview that contains the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_cancel_insertTop

void grid_cancel_insert(object html_element_object)

Cancel inserting new row for the tableview that contains the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_insertTop

void grid_insert(object html_element_object)

Start inserting new row for the tableview that contains the element.

Show/Hide Code

Supported from version: 1.0.0.0

grid_refreshTop

void grid_refresh(object html_element_object)

Make the grid that contain the element refresh.

Show/Hide Code

Supported from version: 1.0.0.0

grid_expandTop

void grid_expand(object html_element_object)

Make the row that contains the element expand its table details.

Show/Hide Code

Supported from version: 1.0.0.0

grid_collapseTop

void grid_collapse(object html_element_object)

Make the row that contains the element collapse its table details.

Show/Hide Code

Supported from version: 1.0.0.0

grid_sortTop

void grid_sort(string _column_id, int sort_order)

Sort the column with specified id. The sort_order have 3 allowed values 0,-1 and 1 standing for "no_sort", "sort desc" and "sort asc" respectively.

Show/Hide Code

Supported from version: 1.0.0.0

get_rowTop

GridRow get_row(object html_element_object)

Return the object of the row that contain the element.

Show/Hide Code

Supported from version: 1.0.0.0

get_tableviewTop

GridTableView get_tableview(object html_element_object)

Return the object of the tableview that contain the element.

Show/Hide Code

Supported from version: 1.0.0.0

get_gridTop

KoolGrid get_grid(object html_element_object)

Return the object of the grid that contain the element.

Show/Hide Code

Supported from version: 1.0.0.0