Omar, Great to have a name ;-) Glad I could help you better understand Ajile. Best of luck, Michael...
256
destroyer019
Nov 19, 2009 4:14 am
Hello Michael, I am trying to get Ajile to pull resources from the Uize <http://www.uize.com> library so I can then setup a prototype class that uses some...
257
mikeizworkin
Nov 19, 2009 2:53 pm
Hi Omar, Looking at the code you're using I'd recommend altering your index.js file as follows: Namespace ("com.newschool.piim"); // Define the Uize...
258
destroyer019
Nov 19, 2009 11:14 pm
Okay, so if I was to import from three other frameworks in this way, would I then create a namespace for each of them to grab specific functions from them?...
259
destroyer019
Nov 23, 2009 9:32 am
Hey Michael, I found my problem. I was mistakenly trying to use the Import directive for a non namespaced script. Uize uses its own method to create and ...
260
iskitzdev
Nov 24, 2009 6:12 pm
Omar, Good to hear. Glad you found the problem and solution. Good luck! Michael...
270
strukturgewitter
strukturgewi...
Mar 16, 2010 11:08 am
Hi, im digging up this post because i experience a very similar problem. My file structure is like this: /var/www/test/index.html ...
271
mikeizworkin
Mar 16, 2010 10:13 pm
Hi, Thanks for providing so much info about the problem you've run into. Before I go into a full explanation, the short answer for your specific code is to...
273
Ben McClure
digitalempire@...
Apr 23, 2010 1:35 am
I have been trying all day to get Ajile to properly load my classes from a directory structure. My javascript is all in /js Ajile is at /js/com/iskitz/ajile.js...
274
Ben McClure
digitalempire@...
Apr 23, 2010 1:46 am
I found the problem. Every call to Namespace() resets the separator character to '.' unless otherwise specified. So in my second Namespace (and every other...
275
Ben McClure
digitalempire@...
Apr 23, 2010 1:47 am
And I was naming my class file "main.js" but it needed to be "Main.js" with an uppercase letter to load properly....
276
Ben McClure
digitalempire@...
Apr 23, 2010 1:57 am
All of my javascript is in /js/ Ajile is at /js/com/iskitz/ajile.js My index.js is in /js/index.js Ajile is working, but it's first properly loading my...
277
mikeizworkin
Apr 23, 2010 6:57 pm
Hi Ben, Modify your ajile script tag's src as follows: src="/js/com/iskitz/ajile.js?mvcoff" mvcoff is a "load-time" option that disables Ajile's automatic...
278
Ben McClure
digitalempire@...
Apr 24, 2010 6:17 am
I am using listeners for loading my classes with Include and Import, but now I'm looking for the same functionality with the third-party scripts I load with...
279
Ben McClure
digitalempire@...
Apr 24, 2010 8:36 am
I'm having a lot of trouble figuring out how to load my scripts in the right order. I'm outputting Load(); commands in a loop in the order that I want them,...
280
Ben McClure
digitalempire@...
Apr 24, 2010 5:12 pm
I apologize if this is horrible code--I'm relatively new to Javascript, but wanted to show you what isn't working in case I may have made a silly mistake. ...
281
muthu veerappan p
muthu_manaparai
Apr 24, 2010 7:40 pm
Hi, I saw your example of google maps version 2, very impressed. I was trying the same with V3, <script type="text/javascript"...
282
Ben McClure
digitalempire@...
Apr 26, 2010 11:31 pm
I cannot find a good way to determine when an external script loaded with Load() is actually loaded... so I think I'll have to dump the use of Ajile for...
283
Ben McClure
digitalempire@...
May 10, 2010 9:59 pm
I'm pretty surprised that nobody else has this issue or has found a workaround. It seems like such a basic requirement that, since the files are loaded in the...
284
mikeizworkin
May 11, 2010 5:27 am
Hi Ben, Sorry I didn't write sooner. I haven't been able to dedicate as much time to Ajile since joining Palm a few months back; webOS keeps me pretty busy :-)...
285
iskitzdev
May 16, 2010 5:42 am
Hi Muthu, Sorry for the very late response but it took some time to look into the issue and create a solution. You can view Ajile working with the Google Maps...
287
silversturm
silversturm@...
Jun 16, 2010 5:46 pm
I apologize for the beginner questions, as I am looking forward to using Ajile but am having difficulty getting it set up just by reading the documentation...
288
iskitzdev
Jun 17, 2010 1:05 pm
Hi Derek, ... com.iskitz.ajile.1.2.1.flat.js is for debugging. It uses the human readable names for all defined variables and functions. com.iskitz.ajile.js is...
289
iskitzdev
Jun 17, 2010 5:00 pm
Hi Derek, I still haven't found the root cause of the Firefox hang, but I did notice that this problem only seems to happen if the loaded script immediately...
290
silversturm
derek.trumbo@...
Jun 24, 2010 8:32 am
Hey Mike! Thanks for the very immediate and thorough response! I do apologize for not being as quick with mine. Thanks also for investigating the FF issue so...
291
markjanveaux
mark@...
Aug 13, 2010 8:32 pm
Hello, We've recently integrated Ajile into a project and so far it works great. One of the things we were hoping we would be able to do would be to use it to...
294
mathias.brodala
mathias.brodala@...
Dec 29, 2010 9:04 am
First I'd like to thank you for this framework, it seems to provide features JavaScript is still missing for proper code management. ... // index.js // Enforce...
295
mathias.brodala
mathias.brodala@...
Dec 29, 2010 9:04 am
First I'd like to thank you for this framework, it seems to provide features JavaScript is still missing for proper code management. ... // index.js // Enforce...
296
iskitzdev
Jan 4, 2011 8:34 pm
Hi Mathias, You're welcome. Thanks for the suggestion and sample code. I tested what you provided and confirmed the problem in Firefox. I spent some time in...
297
iskitzdev
Jan 4, 2011 8:41 pm
Hi Mark, Sorry for the very delayed response, 2010 was a very busy year. Ajile keeps track of previous Import[As]39;s and Include's but not Loads. That said, the...