Search Results: "Zanechat komentář" "URL internetov%E9 str%E1nky" 00webhost
- All Results 259
- Guides 82
- Reference 177
- Technical Demos
- Support Center
Overview
} width={40} /> ); } } export default App; If you need to use a custom image in the LoadIndicator, assign its URL to the indicatorSrc property. jQuery JavaScript
Customize the Loading Indicator
If you need to use a 3rd-party loading indicator inside the LoadPanel, assign its URL to the indicatorSrc property. jQuery JavaScript$(function() { $("#loadPanelContainer").dxLoadPanel({ hideOnOutsideClick: true, indicatorSrc: "https://js.devexpress.com/Content/data/loadingIcons/rolling.svg" }); $("#buttonContainer").dxButton({ text: "Show the Load Panel
Customize
The Map UI component allows you to provide a single icon for all markers. For this purpose, assign the URL of the icon to the markerIconSrc property. In addition, you can customize the icon of an individual marker using the iconScr property. jQuery JavaScript $(function() { $("#mapContainer").dxMap({ zoom: 10, markerIconSrc: "https://js.devexpress.com/Demos/RealtorApp/images
Command Columns
: "/url/to/my/icon.ico", hint: "My Command", onClick: function (e) { // Execute your command here...-button> <dxi-button name="delete"></dxi-button> <dxi-button text="My Command" icon="/url/to/my/icon.ico" hint="My Command
Read-Only Data in JSON Format
To bind a UI component to JSON data, pass the data URL to the UI component's dataSource property. jQuery index.js $(function() { $("#dataGridContainer").dxDataGrid({ dataSource: "https://jsonplaceholder.typicode.com/posts" }); }); Angular app.component.htmlapp.component.tsapp.module.ts <dx-data-grid [dataSource]="jsonUrl"> </dx-data-grid> import { Component