Hi Chris, Having spent some time looking at PackTag, I have to say that it would be challenging to use it with Ajile without modifying either solution's source...
234
make_you_mad
chris.wash@...
Dec 15, 2008 10:32 am
Thanks for looking into this Mike. I'm going to take a look at the first option before moving on. As of now, we've had to do all of the legwork of making...
235
deltareum
deltareum@...
Dec 27, 2008 10:42 pm
I have a global variable in my HTML page, like so: <script type="text/javascript" src="com.iskitz.ajile.js"></script> <script> var foobar=false; </script> ...
236
mikeizworkin
Dec 29, 2008 4:10 pm
Hi, Ajile doesn't try to change any variables you define, so the problem you've described is probably due to something else in your script setup. A few...
249
destroyer019
Oct 23, 2009 7:46 pm
Hello, I have intermediate javascript skills and I am new to ajile. I am working on a project that will reference multiple javascript frameworks, such as Uize...
250
destroyer019
Oct 23, 2009 7:51 pm
... Sorry, I meant to include this the first time. Here is what I have so far. Namespace ("com.visualization.test"); var msg = typeof com.visualization.test ==...
251
iskitzdev
Oct 24, 2009 1:56 am
Hi, Thanks for writing. I'm not sure what type of example you're looking for but I'll give an explanation of how Ajile works so you can decide if it will meet...
252
destroyer019
Oct 25, 2009 6:46 am
Thanks for the reply Michael, I am beginning to work my way around Ajile now. I am trying to successfully import a module but I am still experiencing a...
253
mikeizworkin
Oct 26, 2009 7:26 pm
Hi, Do you have a name I can use when answering, it feels a bit strange just saying hi every time :-) I understand the problem you're having and will go into...
254
destroyer019
Nov 2, 2009 6:07 pm
Thanks Michael My name is Omar, don't know why I didn't start with that. I will try out your suggestions, you are really good at clearing things up for me....
255
iskitzdev
Nov 8, 2009 6:26 am
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 :-)...