Welcome Guest, Not a member yet? Register   Sign In
Is there an integration of CodeIgniter with dojo?
#8

[eluser]slowgary[/eluser]
Dojo is fastest than most others but in recent tests jQuery (ver 1.3.0) has shown to be faster or not far behind, and personally I find it much easier to use. It DEFINITELY has better documentation. Whatever your preference, I agree 100% with Gabriel, do everyone a favor and include your javascript framework from google's servers. Not only does it save your server the bandwidth, but most visitors already have these frameworks cached from another site. It's so much better than in the past where your average browser had 100's of copies of the same JS file cached from different sites.

Also, to reiterate, CI doesn't need to 'support' any JS framework, just use the framework as you normally would, including it in your view. For AJAX calls, use your normal CodeIgniter url, like so:
Code:
//jQuery AJAX call
$.ajax({
   type: "POST",
   url: "controller/method",
   data: "name=John&location=Boston",
   success: function(msg){
     alert( "Data Saved: " + msg );
   }
});

If needed, you could also skip the 'data' and just work it into 'url' for CI style urls.


Messages In This Thread
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-09-2008, 05:34 PM
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-09-2008, 08:00 PM
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-10-2008, 11:16 AM
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-15-2008, 08:06 PM
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-16-2008, 12:00 AM
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-16-2008, 01:47 AM
Is there an integration of CodeIgniter with dojo? - by El Forum - 04-01-2009, 09:52 PM
Is there an integration of CodeIgniter with dojo? - by El Forum - 04-01-2009, 10:50 PM
Is there an integration of CodeIgniter with dojo? - by El Forum - 04-02-2009, 09:17 AM
Is there an integration of CodeIgniter with dojo? - by El Forum - 04-02-2009, 10:16 AM
Is there an integration of CodeIgniter with dojo? - by El Forum - 08-18-2010, 05:02 AM
Is there an integration of CodeIgniter with dojo? - by El Forum - 10-04-2012, 06:53 AM



Theme © iAndrew 2016 - Forum software by © MyBB