Search Results: Wikipedia API query 2010 edit statistics "2010: Odyssey Two" total edits year 2010
- All Results 1000
- Guides 332
- Reference 668
- Technical Demos
- Support Center
Add DevExtreme to a Vue Application
DevExtreme Components Import the DevExtreme components you are going to use from specific modules. In the following code, the DxButton component is imported: App.vue (Options API)App.vue (Composition API) <template> <DxButton text="Click me" @click="sayHelloWorld" /> </template> <script> import DxButton from 'devextreme-vue/button'; export default
Delete Appointments
({ // ... editing: { allowDeleting: false } }); }); Angular HTMLTypeScript <dx-scheduler ... > <dxo-editing [allowDeleting]="false"></dxo-editing> </dx-scheduler> import...User Interaction After a user clicks an appointment, the Scheduler displays a tooltip with two buttons. To delete an appointment, a user clicks the button with a bucket icon. Note
Custom Aggregate Function
: { totalItems: [ { summaryType: "totalSales" } ] } }); }); Angular HTMLTypeScript <dx-data-grid ... [remoteOperations]="true"> <dxo-summary> <dxi-total-item summaryType="totalSales"></dxi-total-item> </dxo-summary> </dx-data-grid> import { DxDataGridModule } from "devextreme
Add DevExtreme to a React Application
, { ArgumentAxis, Series, Legend } from 'devextreme-react/chart'; const data = [{ arg: 1990, val: 5320816667 }, { arg: 2000, val: 6127700428 }, { arg: 2010, val: 6916183482... examples: UI Component Configuration Syntax Demos API Reference
Getting Started with Floating Action Button
", of: "#app-container", offset: "-16 -16" } } }); const editAction = $("#action-edit").dxSpeedDialAction({ hint: "Edit...("instance"); function switchSDAs(tabTitle) { if(tabTitle === "Edit Tab") { editAction.option("visible", true); copyAction.option("visible", false