Tagged Questions
1
vote
1answer
72 views
RESTful Model, get rid of the id query param in the GET request
I'm a little bit stuck here. My model code is
Ext.define('MyFancyModel', {
extend: 'Ext.data.Model',
fields: [
{ name: 'id', type: 'string' },
{ name: 'name', type: 'string' ...
0
votes
1answer
373 views
set field dynamically in the store in extjs or getCount() gives 0 in model
Hope you are doing good.
I have 2 different class University and Students
Relation : University hasMany Students
University fields: uni_id, uni_name,total_students
Students fields: ...
0
votes
1answer
197 views
Load nested models in a form containing a combo multiSelect=true in ExtJS 4.1.1
Here is a shortened version of my code :
Ext.define('MyApp.model.Folder', {
extend: 'Ext.data.Model',
fields: ['id', 'name']
});
Ext.define('MyApp.model.User', {
...,
hasMany: { ...
0
votes
1answer
536 views
ExtJS 4.1 How to create Model / Proxy / Store with Multidimensional Data
I've got data with two keys per data point that I want to use in a Chart. In Python, I'd iterate through the data like this:
for d in _daterange(startdate,enddate): # _daterange is analogous to ...
1
vote
1answer
388 views
ExtJS4.1: Why model.save() sends wrong thing to server?
I tried to use model.save() to POST a new user. But I check request payload and found that it not only sent the data, but also sent other parts of the model. That makes my server cannot parse the ...