Skip to main content

Posts

Showing posts with the label JavaScript dojo vs jQuery

How to setup DOJO Application?

DOJO is a rapid development toolkit for web oriented software on desktop and mobile and internet applications without using the browser’s inbuilt graphics technology. There are basic tow ways for setup the initial configurations. 1.       AOL CDN or Google CDN (Content Delivery Network). 2.       Installing in your Server.

DOJO Components

The DOJO components look like, 1.       DOJO Grid 2.       DOJO Tree 3.       DOJO Filtering 4.       DOJO Button 5.       DOJO Calendar 6.       DOJO Combo-Box For more detail, https://dojotoolkit.org/documentation/tutorials/1.10/hello_dojo/

How much DOJO do I need to know in order to use the ArcGIS API for JavaScript?

dojo.require : - It is very similar to the <script> tag on an HTML page and like JavaScript , we imports resources into HTML page. // AMD require([ "esri/map" , ... ], function (Map, ... ){ ... }); // legacy dojo.require( "esri.map" ); dojo.ready :- It is very similar to <body onload="">. It is initializing to block after the page has finished loading. // legacy dojo.ready(init); // AMD require([ "dojo/ready" ], function (ready){ ready( function (){ }); }); dojo.connect : - It is very similar to JavaScript elements functions looks like, 1.       Element.addEventListener and 2.       Element.attachEvent. It registers a listener event on an element on the page and returns results. // legacy dojo.connect(myMap, "onLoad" , myLoadHandler); // AMD require([ "esri/map" , "dojo/on" ], function (Map, on) { on(myMap, "load" , callback); });...

JavaScript DOJO toolkit vs. jQuery

DOJO   is a rapid development toolkit for   web oriented software   on desktop and mobile and internet applications without using the browser’s inbuilt graphics technology created by Alex Russell , Dylan , David , and others in 2004. The jQuery is a JavaScript library created by John Resig in 2006. It is fast and light weight library. The DOJO provides us many more customizing options but it is a heavy and bulky toolkit but the JQuery is a fast and JQuery light library. The DOJO requires a higher bandwidth because it is heavy but not for JQuery . Right now, DOJO toolkit is not having well documented and tutorials. Due to this developers are facing so many difficulties to get in-depth for web development. The DOJO functionality looks like, //The DOJO Global Objects and functions looks like, dojo //The DOM Ready looks like, dojo .ready ( function () { }); //DOJO Id Selector looks like, dojo.byId( "selector-ids" ) //DOJO Class Select...