Related differences

Ques 6. Tell us about Language Libraries in Dojo.

• dojo.lang.*
• Wrappers for common idioms
• Functional programming APIs
• For Example
– dojo.lang.forEach
– dojo.lang.map
– dojo.lang.assert

Is it helpful? Add Comment View Comments
 

Ques 7. Describe Event System in Dojo.

• ”Like crack for web developers”
• Any function can be notified when other function fires
• Any DOM object can be connected to any function dojo.event.connect(”id”, ”onClick”, listenerObj, ”handleOnClick”);

Is it helpful? Add Comment View Comments
 

Ques 8. Tell us about Environment-Specific Libraries in Dojo.

• Libraries provides routines for handling the environment
• Consist of svg, html, style and dom packages 
• Provides some methods for arrange HTML document
• There is also methods for handling DOM trees and SVG models
• Those routines extend existing routines

Is it helpful? Add Comment View Comments
 

Ques 9. What are Application Support Libraries in Dojo?

• Consist of the most interesting routines
• IO package provides routines e.g. for AJAX binding
• DND package provides routines for drag-and-drop operations
• There is also some useful routines in logging, storage and animation packages

Is it helpful? Add Comment View Comments
 

Ques 10. Relation between AJAX and Dojo.

• Dojo is sometimes advertised as AJAX framework
• It is able to make AJAX requests with Dojo
• But the technique of binding is under the abstraction layer that Dojo has.

Is it helpful? Add Comment View Comments
 

Most helpful rated by users: