Questions tagged [ext-direct]
40 questions
0
votes
1 answer
Overwrite Ext Direct callback or something?
I have many Ext Direct call, and I need to show a Message Box after the result arrived.
Direct.Class.Function (params, function (result) {
// need to show message box in many ajax result like this
//...
})
Is there any solution to this? Can…

Eleanor
- 358
- 5
- 24
0
votes
1 answer
ExtJS 4 DirectProxy simultaneously store load
I have 2 stores with different models but same direct proxy configuration. When i load these 2 stores (i call store.load() for both stores at the same time) ext is sending only one request (containing both loads) and the second store is not…

patryks
- 650
- 2
- 15
- 32
0
votes
1 answer
ExtJS4 Ext Direct form loading with array named fields
I have fields like this (for example only one):
Ext.create("Ext.form.Number", {
name: "field[]",
allowDecimals: true
});
...and I can post nice values. But when I'm trying to load values (form.load({params: {id: 1}})), it returns failure,…

Eleanor
- 358
- 5
- 24
0
votes
2 answers
Ext Js Paging not works with ExtDirect Grid Panel
Here is my thread ,i posted the actual problem of paging here in this area.
you can help me from this thread
sencha forum
sencha forum Ext Paging problem with EXt direct Grid panel

Sam Arul Raj T
- 1,752
- 17
- 23
0
votes
1 answer
ExtJS 4.2.0: Ext.Direct and namespaces
I'm just starting to look at Ext Direct, and I'm trying to get namespaces to work with it. However, I'm not having much luck.
Following the documentation…

user1578653
- 4,888
- 16
- 46
- 74
0
votes
1 answer
CGI-ExtDirect-2.02 can't call method "result" on an undefined value
I am working on converting the interface of a perl web application to Ext and intended to use CGI-ExtDirect-2.02 library.
I encountered a problem though, which, after many hours of struggling, still remains unresolved.
In the simplest use case the…

dmitreyg
- 2,615
- 1
- 19
- 20
0
votes
1 answer
Extjs 4.2 DirectSubmit not working
I'm trying to submit a form using the DirectSubmit API in extjs 4.2.
The error message is:
TypeError: me.form.api.submit is not a function
[Break On This Error]
me.form.api.submit(formInfo.formEl, callback, me);
The exactly same code works in…

Eduardo Lang
- 29
- 1
0
votes
1 answer
Ext Direct with sencha touch 2
I'm trying to use Ext direct's Remoting API to call remote methods. But I'm getting an error when hitting the following URL: "http://10.112.202.164:8080/TestProject/app.html"
Error: Failed loading synchronously via XHR:…

user1616643
- 1
- 2
0
votes
0 answers
Issue with extjs direct store and extdirectspring
Using extdirectspring with extjs 4.1,
I'm trying to do some callback action with my direct store action response (destroy in my case), but can't find a way to send any info as part of response from my store_modify method.
I can do this in form_post…

slashron
- 277
- 1
- 4
- 13
-1
votes
1 answer
How to send form data in JSON format
I use ExtDirect to communicate server. I need to send form data in json to remote functions. It seems that it ignore jsonSubmit config and send data as form post. How should I config my API on the server and client that all file-free request be send…

Handsome Nerd
- 17,114
- 22
- 95
- 173