- Click on a column header of the ajax sortable table to sort.
- Double click on a cell to start editing.
- Use scroll bar in the ajax grid control to see "live" scrolling.
- Opportunity to change the columns' length.
- Select any cell of the row and press "Delete" on the javascript table grid Toolbar to delete a record
- Press "Add" button to add new record
- Select any cell of the column, to apply the filter to it
Filter using:
We shall apply the filter to the following data types: integer, string, char.
The filter for the string types (string, char)
You should use only symbols of letters,
digits and two special symbols'*' and '?'.
Description:
'*' - means any quantity of any symbols;
'?' - means a symbol.
Examples:
Filter: a*
Result: [All records are starting with "a" symbol]
Filter: a??
Result: [All records starting with "a" symbol and having length in 3 symbols]
The filter for the numerical types (integer)
You should use only symbols of digits and equality symbols: '=', '<' and '>'
Description:
'=' - equal;
'<' - less;
'>' - greater;
'>=' - greater or equal;
'<=' - less or equal.
Examples:
Filter: >100
Result: [All records which have the value of the selected filed more than 100]
Filter: <=5
Result: [All records less or equal 5]