Questions tagged [devextreme]

DevExtreme is a commercial application framework made by DevExpress. It is based on HTML5 and JavaScript and can generate native applications for smartphones and tablets (Windows Phone, iOS and Android) and responsive webapps for a traditional desktop.

Resources

873 questions
0
votes
1 answer

how does the DataSource object work as synchronous?

Javascript var denemeSource = new DevExpress.data.DataSource({ store: Deneme.db.deneme }).load().done(function (result) { alert("1x"); }); var denemeSource1 =…
0
votes
0 answers

How to use offline map in Devextreme mobile application?

I'm developing an application that contains an offline mode. I need to use offline map in this Devextreme mobile application. How do I make it ? Has the google map in such a feature ?
0
votes
1 answer

Angular, PieChart, NodeJS and multiple queries

I'm trying set my second query to the pie chart datasource in angular and nodejs using multiple queries to get the results at same time Someone have some idea to solve it. Server Side var url = require('url'); //Require express, var express =…
Rodrigo N M
  • 97
  • 4
  • 13
0
votes
1 answer

how to get total count of datasource in Devextreme

I have a project in DevExtreme,mobile. JavaScript: var example = new DevExpress.data.DataSource({ store: example.db.deneme, requireTotalCount: true }).load().done(function (result) { alert(result.length); }); // this In this…
0
votes
2 answers

Function statement requires a name

I have tried every way but I am missing something... This is my code : Mobile.Customer = (function (params) { var viewModel = { }; return { viewModel: viewModel } var gridDataSourceConfiguration = [{ …
H_duPreez
  • 37
  • 11
0
votes
1 answer

Devextreme data-grid event handling with angularjs

I have following data-grid Definition:
Palmi
  • 2,381
  • 5
  • 28
  • 65
0
votes
1 answer

Lookup column display different value depend on value from another column in the same row inside dxdatagrid (Dev Extreme)

I am using dxdatagrid in Dev Extreme library Is there any way that I can filter data source of the lookup column right after change value of another lookup column in the same row inside the datagrid I created this demo to explain: var listAccount =…
S.A
  • 13
  • 1
  • 4
0
votes
1 answer

Differentiating the checkbox selection & row selection in dxDataGrid

I implemented dxData grid with the following option. selection: { mode: 'multiple' } And also have a different functionality for onRowClick & onSelectionChanged. While the onRowClick event is getting fired , It fires the onSelectionChanged…
Anuradha
  • 169
  • 1
  • 10
0
votes
1 answer

$.ajax call not firing from devextreme

I have a service which is created like this. service.vb _ Public Class UmbrellaService Inherits System.Web.Services.WebService Implements IUmbrellaMobileService Function GetCustomers() As List(Of Customers) Implements…
H_duPreez
  • 37
  • 11
0
votes
1 answer

Use $ajax to read data in devextreme

my Devextreme script looks like this : UmbrellaMobile.Customer = function (params) { var baseAddress = 'http://localhost/Service/GetCustomers'; var Customers Customers = function getCustomers() { $.ajax({ url: baseAddress, …
H_duPreez
  • 37
  • 11
0
votes
0 answers

Display Json data in mobile app

I really hope and pray you can help me, as I have had not much luck trying to figure things out on my own. I am trying to create an app using Devextreme My code looks like the following - db.js (function () { var dbImpl = { url:…
H_duPreez
  • 37
  • 11
0
votes
1 answer

How to set icon in dxSlideOut,Devextreme

I've used dxslideout in some parts of the Devextreme basic project .dxView
. .
javascript musteriNavItems = [ { action: "Profil", icon: "profil", text: "Profil" }, { icon:…
0
votes
1 answer

DevExtreme and DxMap and DxDataGrid

I have built a datagrid and a map. In that map I'd like to put some marks when I click in a row of a datagrid. What way can I put a marker with an full address directly of? My code is here: HTML: …
0
votes
1 answer

Creating multiple DataSources from a single ajax GET

I'm trying to assign the data from a $.getJSON call, to two different DataSource's. One will contain the data "raw", the other will be manipulated. The json I receive (Array of following): { "ID": 1, "Cust_Id": 1, "Login_Id": 1, "Hours":…
Detilium
  • 2,868
  • 9
  • 30
  • 65
0
votes
1 answer

DXTreeview with AngularJS will not allow branches to be expanded

I have an MVC5 project with the following Index.aspx When I run the project in VS2013 I can only see the top branches of the tree, with no apparent way to expand them. Resharper indicates that my references are OK. I am new to HTML5 programming and…
Kirsten
  • 15,730
  • 41
  • 179
  • 318