Questions tagged [ext-direct]
40 questions
13
votes
1 answer
Ext.Direct VS Ext.Ajax
What are the main advantages of Ext.direct over regular Ext.ajax calls? When should I consider using one over the other?

Levi Hackwith
- 9,232
- 18
- 64
- 115
5
votes
1 answer
ExtJS direct with ASP.NET MVC
I've been looking at using ExtJS Direct with ASP.NET MVC but it doesn't seem to play too nicely with MVC's routing. Has anyone had any luck implementing it with ASP.NET MVC? I don't want the actual implementation details, just want to know if anyone…

lomaxx
- 113,627
- 57
- 144
- 179
3
votes
2 answers
Extjs. Can't catch write event after store.save() with create action
I'm trying to handle event after creating new record to ExtJS store and saving it to server. But I have a problem - write event firing only after update action. Documentation says:
@event write Fires if the server
returns 200 after an
…

Shamanu4
- 5,296
- 2
- 27
- 31
2
votes
1 answer
ASP.NET MVC 3 ModelState.IsValid is always returning true for JSON encoded data using Ext.Direct
I have a form and the only item that is required is the customer name. So in my model, I have:
[DisplayName("Customer name*:")]
[Required]
public string CustomerName
{ get; set; }
Previously, I was doing an HTML post and everything worked fine…

DavidS
- 2,179
- 4
- 26
- 44
2
votes
0 answers
Ext Direct and Spring upgrade
I have upgraded Ext Direct from 1.3.2 to 1.8.0 and Spring Framework from 4.2.6.RELEASE to 5.1.7.RELEASE
After that actions in REMOTING_API becomes empty
Ext.app.REMOTING_API = {
"url" : "/ui/.../services/router",
"namespace" : "Ext....",
…

Hayk Mantashyan
- 328
- 2
- 18
2
votes
0 answers
Creating a Laravel form object using Ext Direct
Im using ExtDirect in my Frontend Ext project to interact with my Laravel API.
I have a login method in my AuthController which uses the Request object like so;
public function login(Request $request)
{
$validator =…
user9048585
2
votes
4 answers
How to initialize Ext.Direct?
I try to use Ext.Direct with the ExtJS 4 MVC structure, and I'm not able to add the provider.
I get the error Uncaught TypeError: Cannot call method 'addProvider' of undefined while calling…

Lorenz Meyer
- 19,166
- 22
- 75
- 121
2
votes
1 answer
ASP.NET Generic Handler not getting called after .NET 3.5 to .NET 4.0 upgrade
This old title describes the visible issue, but the new title describes the root cause issue a little better. I'm still not sure why the ASHX isn't getting called, so I'm still looking for an answer. I have a workaround for now by hard coding the…

JustBeingHelpful
- 18,332
- 38
- 160
- 245
2
votes
2 answers
How to avoid nested asynchronous callbacks due to Ext Direct and dynamic locale loading?
I'm using Ext JS 4.1 to create a CRM-type application. To connect to the server side, I'm using Ext Direct via the RemotingProvider.
Before the application launches and renders, I want to retrieve some global variables from the server via Ext…

pulsar
- 560
- 2
- 13
1
vote
0 answers
ExtDirectSpring Router URL?
I'm trying to get ExtDirectSpring to work but can't figure out what the URL to the Direct Router shall be.
My controller:
@Controller
@RequestMapping(value = "/sonstiges/extdirect")
@Transactional
public class ExtDirectController {
…

Steven
- 441
- 4
- 16
1
vote
1 answer
ExtJS 4.0, Django and ExtDirect
Do you know if I can use this Django Ext.Direct router with ExtJS 4.0? Do you have any examples where I can find how to do it? I'm new to JavaScript programming.
Will it be easy to integrate server side form validation with ExtJS? What about file…

Julian Popov
- 17,401
- 12
- 55
- 81
1
vote
1 answer
Problem deploying django project that uses python extdirect
I am trying to deploy on Apache with mod_wsgi a Django project that uses extdirect app.
extdirect app allows to use ExtJS Ext.Direct functionality with Django. Among other things, using custom template tags, it automatically adds to my templates…

jan
- 1,593
- 2
- 12
- 15
1
vote
2 answers
Server side technology with ext-js
I have chosen Ext-JS to develop the UI for my next application. I am wondering what is the best way for Ext-JS to interact with my server.
Should I use plain JSPs which return a JSON response? Should I use DWR or Jabsorb which provides direct…

Unknown
- 11
- 1
- 3
1
vote
1 answer
Extjs 4 grid store MVC with Ext direct url is undefined
I have a grid with store, and I want to load on render or click a button, but when I try to load the grid, got an url is undefined error. I need to use Ext direct, so no url. What should I do?
Ext.define('My.view.Grid' ,{
extend:…

Eleanor
- 358
- 5
- 24
1
vote
0 answers
Using ext-direct with SailsJS
I am using SailJS for one of my projects. In the front end I am using ExtJS framework. I would like to use ext-direct with my application.
I referred the post sailsjs + ext-direct (sencha extjs) to make ext-direct work with SailJS. Anyway with this…

Harish Ambady
- 12,525
- 4
- 29
- 54