Preface
My first idea how to the name this article was “Ext.Direct for Dummies” just because I feel as a one as long as Ext.Direct is concerned. I’ve first heard about it during Ext Conference in April and I think that it is one of the brightest ideas of Ext 3.x release. Nevertheless, I had no time do dig into into it and to understand the concepts fully.
Now I’ve decided to take a journey of discovering what is under hood, how to setup client and server side and how to use Ext.Direct effectively in applications. If you want, I invite you to travel with me.
Who is this article for
It is for developers who are familiar (at least) with basic javascript and Ext object oriented programming, who are able to setup a web page and have it running from a http server and who can code in a server-side programming language. (I will use PHP in this article so PHP developers will have a slight advantage.)
What is Ext.Direct anyway
Rich Internet Applications (RIA) consist of two parts: client side and server side. Client cannot call server functions directly but sends requests, server processes them calling the appropriate functions and returns results back to client.
Let’s say we have a server side class Car
that has methods start
, go
and stop
. From the client viewpoint, we need to ask server: Please, start
the Car
, then go
with it and then stop
it.
Now, imagine that we could directly call
Car.start(); Car.go(); Car.stop();
and these would call server side methods of server side class Car
. Nice, isn’t it? You need to remember only one set of class names and their methods, code is neat and less bug prone.
And that is what Ext.Direct does. You export list of server side classes and their methods that should be made available for client to call and Ext.Direct takes care of the rest so that you can really use Car.start()
in your code.
What we need
- a working http server we have an access to. It can be installed on the local computer but it must be present. file:///something links will not work
- a server side (scripting) language enabled in the above server. If you will use PHP, you need 5+ version to take advantage of ReflectionClass
- Ext JS 3.0.0 library or latest Ext version built from SVN, if you have purchased Ext Premium Membership
- Ext.Direct Pack
- Firefox with Firebug installed
- If you use PHP, FirePHP is strongly recommended
Initial setup
- create directory
direct
under your http server document root. Name does not matter in fact but I will usedirect
as the root for testing in this article. - extract ExtJS into
ext
subdirectory underdirect
- extract content of php subdirectory from Ext.Direct Pack under
direct
- extract content of FirePHPCore-x.x.x into
firephp
subdirectory underdirect
At this point, your direct
directory listing should read the following:
+ cache/ + classes/ + data/ + ext/ + ExtDirect/ + firephp/ api.php router.php
The first test
We still need to do some work before we can see it running. First, create config.php
file with the following content:
We also need index.php
so we have something to run:
Mastering Ext.Direct by Saki Ext.Direct.addProvider(Example.API);
Ext.Direct Pack comes with example PHP classes (Echo, Exception, File
and Time
) and with api.php
file. You can leave classes untouched for the moment but edit api.php
to read the following:
setRouterUrl('router.php'); // default // disable caching for development, enable for production //$api->setCacheProvider($cache); $api->setNamespace('Example'); $api->setDescriptor('Example.API'); $api->setDefaults(array( 'autoInclude' => true, 'basePath' => 'classes' )); $api->add( // these are example classes from Ext.Direct PHP stack array( // real class name is Class_Echo, therefore prefix 'Echo' => array('prefix' => 'Class_'), // real class name is Class_Exception, therefore prefix 'Exception' => array('prefix' => 'Class_'), 'Time', 'File' ) ); $api->output(); $_SESSION['ext-direct-state'] = $api->getState(); // eof ?>
So far, so good… Now you can navigate to http://yourserver/direct/index.php
and if everything went right you will see the blank page and no errors in Firebug.
Open Firebug console and type the following:
Example.Time.get();
You can see that request is sent to server:
{"action":"Time","method":"get","data":null,"type":"rpc","tid":2}
and that response comes back:
{"type":"rpc","tid":2,"action":"Time","method":"get","result":"09-05-2009 19:46:38"}
You can try other classes and methods:
Example.Echo.send("Test to be echoed"); Example.File.list("."); Example.Time.get();
and you can also put fb($someVariable)
statement in various places of php code if you want to know what’s going on here and there.
Conclusion
We have set up very minimum of Ext.Direct server and client side. The main purpose of this part is to get acquainted with basic components of this technology.
Mastering Ext.Direct, Part 2 >>>
- Ext, Angular, React, and Vue - 27. June 2019
- The Site Resurgence - 11. February 2018
- Configuring ViewModel Hierarchy - 19. June 2015
17 Responses
Greetings from Florida! I’m bored at work so I decided to check out
your site on my iphone during lunch break.
I really like the info you provide here and can’t wait to take
a look when I get home. I’m amazed at how fast your blog loaded on my
cell phone .. I’m not even using WIFI, just 3G ..
Anyhow, superb blog!
wonderful submit, very informative. I wonder why the other
experts of this sector do not understand this. You should continue your writing.
I’m confident, you’ve a huge readers’ base already!
For the reason that the admin of this web page is working, no hesitation very soon it will be famous, due to its feature contents.
Really its a great article about ExtDirect. its giving good idea about server side implementation of ExtDirect specification on PHP.
I have also found a link where we can get a good idea about ExtDirect implementation on Java side.
http://jksnu.blogspot.in/2013/08/extjs-extdirect-magic.html
http://jksnu.blogspot.in/2013/08/extdirect-directgngine-example.html
This guy stole your post: http://jay.f2fsolutions.net/?mid=textyle&page=6&category=132&document_srl=1978
Hi,
i have post my problem on this link
http://www.sencha.com/forum/showthread.php?135180-Ext.Direct-Grid-for-ASP.net-response-not-parse&p=607694#post607694
the issue is with the ext direct grid with ASP.net, if anyone have any idea please help
thanks,
“‘+o.result.filename+'” on the server’);
},
failure: function(fp, o){
msg(‘Error’, ‘Error:’+o.result.msg);
}
});
}
}
}
—-
For backend I’m using standard PHP stack from Ext http://www.extjs.com/products/extjs/download.php?dl=extdirectpack
—
When I’m trying to upload a file, I’ve got a failure response all the time. I crawled internet a bit, and some people write that Ext.form expects JSON response not in Ext.direct format: “result”:{“success”:true,”msg”:”Some expection”}}
When I return success=true – success handler work just fine, however, I don’t like the idea of modification of the standard stack.
Do you know what I’m doing wrong? Should I set results handlers differently?
Thanks for reply,
Hey Saki,
Thanks for very interesting and useful post.
I’ve got a question in regards to Ext.direct.
I’m trying to wire Ext.form with Ext.direct.
Everything seems fine, except Ext does not like results returned by Ext.direct.
Form looks as follows:
var fp = new Ext.form.FormPanel({
api: {
submit: NRemote.UserService.addPic
},
fileUpload: true,
width: 500,
frame: true,
….
buttons: [{
text: ‘Save’,
handler: function(){
if(fp.getForm().isValid()){
fp.getForm().submit({
waitMsg: ‘Uploading…’,
success: function(fp, o){
msg(‘Success’, ‘Processed file
Thank you for this sir!
Hi, I found your article while I look for something I can explain Ext.Direct easily to my members of company.
I want to translate this article and I want to put translated article with your credit on my blog and using it for lecture. Can I do it?
I’m not sure if Ext.Direct speeds up a running application, however, it speeds up development of applications tremendously. Main points:
– same API client and server side
– less typing – overhead code is now in Ext
– less typing also means less (typo) bugs
– less typing also means shorter, simpler application
Hmm,
Seems to be a cool idea… But aside from removing some of the coding load off the client-side, I don’t fully see how this will make my application any better or easier to code…
I like the idea (as the name implies) that I can make direct server-side function calls from the client. But how does this speed the application up?
Essentially, I’m looking for the value of this EXTjs 3.x feature. If it does indeed make coding easier or my application faster (for the client-side), then I will certainly look to update my apps…
Thanks for article. It’s great… I have ideas about Ext.Direct now.
Saki –
Thanks for the great walk through introducing people to Ext.Direct and how to get it setup.
I look forward to seeing the additional parts of the series!
Thank you very much for this introduction to Ext.Direct. As a debug tool, maybe Formaldehyde is best suited. Taken from the google project page: