Search Results: if (!this.bundlesReported[script.src]) {

Resize and Relocate

Guides

: 'dxhoverstart', hideEvent: 'dxhoverend', height: 300, width: 500 }); });<img id="image" src="https://url/to/an/image" /> <div id="popoverContainer"> <p>Popover content</p> </div> Angular HTMLTypeScript <img id="image" src="https://url/to/an/image" /> <dx-popover target="#image" showEvent="dxhoverstart" hideEvent

Customize Item Appearance

Guides

() { $("#selectBoxContainer").dxSelectBox({ itemTemplate: function(data) { return $("<div>").append( $("<img>").attr("src", data.imgSrc...). app.component.html <dx-select-box ... itemTemplate="item" > <div *dxTemplate="let data of 'item'"> <img src="{{ data.imgSrc }}" /> </div> </dx-select

Column and Row Indexes

Guides

The following indexes can be used in methods and callback functions: Initial Column Index (or simply Column Index) Equals the column's index in the columns array. Visible Column Index Depends on...

Add DevExtreme to a jQuery Application

Guides

to the links. HTML <head> <!-- ... --> <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <!-- DevExtreme theme -->..." src="https://cdn3.devexpress.com/jslib/25.2.5/js/dx.all.js"></script> <!-- <script type="text/javascript" src="https://cdn3.devexpress.com/jslib/25.2.5/js/dx.web.js"><

Create a DevExtreme application with Vite.js

Guides

the src/components/HelloWorld.vue file because we no longer need it. The src/style.css file includes CSS code that overrides DevExtreme styles. Open the file and remove its contents. 4. Set up a DevExtreme theme Add the following import statement to the src/main.ts file: main.ts import 'devextreme/dist/css/dx.fluent.blue.light.css'; This statement applies the fluent theme to your application