ok, I got it working after trying different options. thanks
On Apr 11, 4:16 pm, pradp <[email protected]> wrote: > Hi > > Let me explain you my requirement. > I have a datagrid/Advanceddatagrid to which I am populating the data > from an external xml file using actionscript. > Now I wanted to add a button,url link as another column along with the > xml data. > > Here is the code snippet: > > ************************* > xmlProduct = new XML(ulXML.data); > trace("xmlProduct: "+ xmlProduct.toXMLString()); > productList = new XMLList(xmlProduct.children()); > trace("productList "+productList.children()); > > for( var x:uint = 0; x < productList.length(); x++ ) > { > var obj:Object = new Object(); > obj.ID = productList[x].ID; > obj.Title = productList[x].Title; > obj.Categories = productList[x].Categories; > obj.Author = productList[x].Author; > obj.Status = productList[x].Status; > obj.LastModified = productList[x].LastModified; > > orgData.addItem(obj); > } > ************************* > I am adding the extracted data to an arraycollection(orgData) and > setting the dataprovider for the datagrid. > How can I add a button in this scenarion. Also, I am doing pagination > as well. > > Thanks > Pradp -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

