1. How does event propagation happen?
2. How to stop the event propagation in between before it reaches the top level element intended to?
3. What i light weight and heavy weight?
4. What is the difference between Flex 3.0 and Flex 4.5?
5. What is the difference between Array and Array Collection?
Top Level: Array:
<mx:Array>
<mx:Object label="California" data="CA" >
<mx:children><mx:Array/></mx:children>
</mx:Object>
<mx:Object label="Pennsylvania" data="PA">
<mx:children>
<mx:Object label="Philadelphia" population="1479339" />
</mx:children>
</mx:Object>
<mx:Object label="Texas" data="TX" />
</mx:Array>
7. What is the difference between Datagrid and Advanced Datagrid?
8. You have a Datagrid. You have a inline item renderer for one column.From the item renderer you have to call a method that is defined on the top level script block. How will you call?
9. How will you send the form data using HTTPService?
10. How will you call a method from a child tag which is defined in the parent tag?
11. How will you access a property file inside Flex application.
2. How to stop the event propagation in between before it reaches the top level element intended to?
3. What i light weight and heavy weight?
4. What is the difference between Flex 3.0 and Flex 4.5?
5. What is the difference between Array and Array Collection?
Top Level: Array:
- It is a dynamic class and extends Object
- Is used to manipulate Arrays
- push and pop operations can be performed
- if used in bindings values are not monitored
- simple form of data maniipulation
- cannot directly add event listener
- cursor functionality not available
- It is not a dynamic class and extends List Collection View
- Is a wrapper class that exposes Array to be manipulated by the methods of
ICollectionView
orIList.
- Here we have a property called source which is the original array itself.
- push and pop will not work
- addItemAt(), removeItemAt() will work
- if used in bindings values are monitored that is events are raised for any specific change in the state of the ArrayCollection.
- advanced array manipulations methods are available
- directly add event listener
- sort and filter possible
- cursor functionality available.
<mx:Array>
<mx:Object label="California" data="CA" >
<mx:children><mx:Array/></mx:children>
</mx:Object>
<mx:Object label="Pennsylvania" data="PA">
<mx:children>
<mx:Object label="Philadelphia" population="1479339" />
</mx:children>
</mx:Object>
<mx:Object label="Texas" data="TX" />
</mx:Array>
7. What is the difference between Datagrid and Advanced Datagrid?
8. You have a Datagrid. You have a inline item renderer for one column.From the item renderer you have to call a method that is defined on the top level script block. How will you call?
9. How will you send the form data using HTTPService?
10. How will you call a method from a child tag which is defined in the parent tag?
11. How will you access a property file inside Flex application.
No comments:
Post a Comment