SpreadJS Documentation > Developer's Guide > Using Touch Support with the Widget > Using Touch Support > Using Touch Support with Filtering |
You can use touch gestures when filtering.
Tap the filter icon to display the filter dialog. Then tap to select the filter options.
This example creates a filter.
JavaScript |
Copy Code
|
---|---|
var cellrange =new GcSpread.Sheets.Range(0, 2, 5, 1); var hideRowFilter =new GcSpread.Sheets.HideRowFilter(cellrange); activeSheet.rowFilter(hideRowFilter); |