Find Devextreme Themebuilder Examples and Templates
Use this online devextreme-themebuilder playground to view and fork devextreme-themebuilder example apps and templates on CodeSandbox. Click any example below to run it instantly or find templates that can be used as a pre-built solution!

Search and Editing - DevExtreme Select Box Turkce (forked)Set the searchEnabled property to true to allow users to search. The following properties help you configure the feature:
searchExpr
Specifies one or several data fields to search.
searchMode
Specifies whether found items should contain the typed-in string or start with it.
searchTimeout
Specifies the delay between the moment a user stops typing and the moment the search is executed.
minSearchLength
Specifies the minimum number of characters that a user should type in to trigger the search.
showDataBeforeSearch
Specifies whether the SelectBox should display the unfiltered item list until a user have typed in the minimum number of characters (minSearchLength).
Set the acceptCustomValue property to true to allow users to add values to the SelectBox. You should also implement the onCustomItemCreating handler to create new data source entries.

Cell Editing and Editing API - DevExtreme Data Grid (forked)Users can modify DataGrid data cell by cell. In this mode, only one cell can be in the edit state at a time. DataGrid saves changes immediately after the focus leaves cell.
To enable the cell mode, do the following:
Set the editing.mode to "cell".
Assign true to the editing object's allowUpdating, allowAdding, and allowDeleting properties.
This demo also shows how to delete selected records. Review the onSelectionChanged and deleteRecords functions for implementation details.















