Search Results: "wiki/RecentlyCommented" property
- All Results 1000
- Guides 25
- Reference 975
- Technical Demos
- Support Center
Component Configuration Syntax
Reference.Button.Configuration Get and Set Properties All operations with UI component properties are carried out using the option() method. You can use it to do the following. Get a Single Property JavaScript...").dxDataGrid("option"); Set a Single Property JavaScript var dataGridInstance = $("#dataGridContainer").dxDataGrid("instance"); dataGridInstance.option("dataSource", []); dataGridInstance.option("editing.mode
Component Configuration Syntax
Static String Property Value HTML <dx-button text="Simple button"></dx-button> Static Non-String Property Value HTML <dx-button [disabled]="false" [width]="50"> </dx-button> Properties of the Object Type Use UI components prefixed with dxo- ("o" stands for "object"). In the following example, we configure the TreeMap's tooltip property: HTML <dx-tree-map>
Component Configuration Syntax
fallbacks in place. Static Property Value Function componentClass component import Button from 'devextreme-react/button'; export default function App() { return ( <Button disabled... configuration components. In the following example, we configure the Chart UI component's tooltip property: Function componentClass component import Chart, { Tooltip } from 'devextreme-react/chart
Component Configuration Syntax
Static String Property Value HTML <DxButton text="Simple button" /> Static Non-String Property Value HTML <DxButton :disabled="false" :width="50" /> Properties of the Object Type Use nested configuration components. In the following example, we configure the Chart's tooltip property: App.vue (Options API)App.vue (Composition API) <template> <DxChart>
Hide a Column Using the API
jQuery A column is considered hidden when its visible property is false. You can change this property using the columnOption(id, optionName, optionValue) method. For example, the following code hides an "Email" column: JavaScript$("#dataGridContainer").dxDataGrid("columnOption", "Email", "visible", false); Angular A column is considered hidden when its visible property is false. You can bind