Search Results: "Powered by PHP-Fusion" "viewpage.php" "Post Comment" travel

dxValidator AsyncRule

Reference
A custom validation rule that is checked asynchronously. Use async rules for server-side validation.

: 'POST', body: JSON.stringify({ data: params.value }) }) .then(response => { if (!response.ok) { throw... Promise((resolve, reject) => { fetch("https://mydomain.com/MyDataService", { method: 'POST', body: JSON.stringify({ data: params.value

CustomStore Configuration

Reference
This section describes properties that configure the CustomStore.

: function (values) { return $.ajax({ url: "http://mydomain.com/MyDataService/myEntity", method: "POST", data: values }) } }); Angular TypeScript...: (values) => { return fetch("https://mydomain.com/MyDataService/myEntity", { method: "POST", body: JSON.stringify(values), headers

PivotGridDataSource fields

Reference
Configures pivot grid fields.

break; } } </script> NOTE The this keyword refers to the field's configuration. View on GitHub calculateSummaryValue Specifies a custom post-processing function for summary values. This and other post-processing functions allow you to perform additional calculations on each summary value and take into account neighboring cell summary values. You can

DataSource Configuration

Reference
This section describes properties that configure the DataSource.

or all at once. Defaults to false if group is set; otherwise, true. postProcess Specifies a post processing function. jQuery JavaScript var ds = new DevExpress.data.DataSource({ postProcess... to the store. See Also Post Processing pushAggregationTimeout Specifies the period (in milliseconds) when changes are aggregated before pushing them to the DataSource. When this property is undefined

dxAccordion Configuration

Reference
An object defining configuration properties for the Accordion UI component.

or service that returns JSON data. OData Implement an ODataStore. Web API, PHP, MongoDB Use one of the following extensions to enable the server to process data according to the protocol DevExtreme UI components use: DevExtreme.AspNet.Data DevExtreme-PHP-Data devextreme-query-mongodb Then, use the createStore method to configure access to the server on the client as shown below. This method