[flexcoders] Getting a DataGrid item renderer instance

2006-06-19 Thread flex8it
I have simple datagrid with 2 columns and 2 rows like this: column 0 column 1 - image textfield image textfield Column 0 contains my ImageRenderer component. Column 1 contains the DataGrid's default item renderer and editor: text, textfield. First Problem: How do

Re: [flexcoders] Getting a DataGrid item renderer instance

2006-06-19 Thread Jeremy Lu
There are many possible ways to approach these two problems, depends on what you want to achive. A basic approach is : item renderer usually implement several interfaces, like IListData and a bunch of others, two most important methods are data() and listData(). If you implement these two