jQuery/JS Common - Utils - ui
An object that serves as a namespace for DevExtreme UI components as well as for methods implementing UI logic in DevExtreme sites/applications.
notify(options, type, displayTime)
import notify from "devextreme/ui/notify"
Parameters:
JavaScript
- $(function() {
- DevExpress.ui.notify({ message: "Error message", width: 300, shading: true }, "error", 500);
- })
See Also
repaintFloatingActionButton()
Repaints the Floating Action Button.
import speedDialAction from "devextreme/ui/speed_dial_action/repaint_floating_action_button"
Call this method to repaint the Floating Action Button after you change the globalConfig.floatingActionButtonConfig at runtime:
JavaScript
- $(function() {
- // ...
- DevExpress.config({
- floatingActionButtonConfig: {
- // ...
- }
- });
- DevExpress.ui.repaintFloatingActionButton();
- })
See Also
themes
An object that serves as a namespace for the methods that work with DevExtreme CSS Themes.
import ui.themes from "devextreme/ui/themes"
Feedback