Search Results: "Enter your URL" "Advanced" "Short URL Bookmarklet" cima

PivotGridDataSource Configuration

Reference
This section describes properties that configure the PivotGridDataSource.

({ onChanged: function () { // Your code goes here } }); $("#pivotGridContainer").dxPivotGrid({ dataSource: pivotGridDataSource }); }); Angular TypeScriptHTML...: PivotGridDataSource; constructor() { this.pivotGridDataSource = new PivotGridDataSource({ onChanged: () => { // Your code goes here

dxSortable Configuration

Reference
This section describes properties that configure Sortable UI component content, behavior, and appearance.

= e.element.find(".dx-treeview-item")[e.fromIndex].innerText; // your code } }); }); function dragTemplateFunc(item, customContainer){ var $customContainer...; </Sortable> ); } onDragChange = (e) => { e.itemData = this.state.treeViewItems[e.fromIndex].name; // your code } } export default App

dxDataGrid

Reference
The DataGrid is a UI component that represents data from a local or remote source in the form of a grid. This UI component offers such basic features as sorting, grouping, filtering, as well as more advanced capabilities, like state storing, client-side exporting, master-detail interface, and many others.

Start Tutorial View Demo See Also jQuery Add DevExtreme to a jQuery Application Angular Add DevExtreme to an Angular CLI Application Vue Add DevExtreme to a Vue...

dxFileManager contextMenu

Reference
Configures the context menu settings.

" } ] } onContextMenuItemClick: onItemClick // ... }); }); function onItemClick(args) { if(args.itemData.extension) { // your code } } Angular...) { // your code } } } import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import

dxGantt contextMenu

Reference
Configures the context menu settings.

" } ] } // ... ] } onCustomCommand: onCustomCommandClick // ... }); }); function onCustomCommandClick(e) { if(e.name == 'item1') { // your code...) { if(e.name == 'item1') { // your code } } } @NgModule({ imports: [ // ... DxGanttModule ], // ... }) Vue App.vue <template> <DxGantt