Skip to content
This repository has been archived by the owner on Dec 3, 2017. It is now read-only.

Use DevExtreme Widgets

AlekseyMartynov edited this page Jul 1, 2016 · 6 revisions

DevExtreme tags and attributes have the same structure as DevExtreme client-side widgets and their configuration options. However, tag and attribute names are in kebab-case (hyphen-separated lower-case).

Example:

<dx-data-grid column-auto-width="true">
    <column datafield="name" />
</dx-data-grid>

For most tags and attributes, Razor IntelliSense displays tooltips with type information and a short summary text:

code

A complete documentation for each widget is available online at http://js.devexpress.com/Documentation/ApiReference/UI_Widgets/.

NOTE. There are few special cases when properties in the client-side API utilize the dynamic nature of JavaScript and accept values of different types. Such attributes have neutral CLR types (object, IEnumerable, etc).

See Also