Closed (fixed)
Project:
Ext
Version:
6.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Feature request
Assigned:
Reporter:
Created:
3 Apr 2008 at 23:10 UTC
Updated:
10 Jun 2008 at 08:33 UTC
Jump to comment: Most recent
Would this be straightforward to port to Drupal 5.7?
Comments
Comment #1
ximo commentedProbably very straight forward, yes. If there's still a need for this, let me know, and I'll look into it.
(Sorry for the wait, for some reason I wasn't monitoring the issue queue any more..)
Comment #2
ximo commentedAnd wouldn't you know it.. I just noticed another issue asking for a 5.x version. I'll look into it right away!
Comment #3
avpadernoI was working on a module for Drupal 5.x that used the Ext JS 2.1 or higher.
Would the skeleton code I wrote be of any help?
Comment #4
ximo commentedDone. If you have any interesting code, I wouldn't mind having a look at your code :)
Download here (once the packaging script spits out a tarball):
http://drupal.org/node/262278
Comment #5
avpadernoI actually don't have access to that node, so I don't know what actually it is. :-)
Comment #6
ximo commentedHm, strange. Can you see it now? If not, here's the 5.x development snapshot tarball: http://ftp.drupal.org/files/projects/ext-5.x-1.x-dev.tar.gz
Comment #7
avpadernoI can now see it.
I have some observations.
ext-all-debug.js,ext-all.js,ext-core.js,ext-core-debug.js; considering that the module should be made for any developers whom create modules based on Ext JS, would not be better to make that a choice between the debug version of the library, and the plain version?ext_load_library()function uses a parameter that causes the function to load the Ext JS or nothing; what would the use of that parameter be?Comment #8
ximo commented1. I thought that as users may build their own Ext library on http://extjs.com/products/extjs/build/ and name it anything, it would be best to list all .js files in the root directory of Ext. All those files are library files anyway. If we get dynamic loading of Ext components going, there wouldn't be a need for this, as the
ext-core.jsandext-core-debug.jswould be the only useful files :)2. It allows modules to load any library file, and defaults to the user selected one. This is very simply done, but it works for now..
Thanks for your feedback!
Btw, the changes are based on the D6 branch, which is also updated.