tags:

views:

65

answers:

2

Hi,

I have requirement in AdvancedDataGrid.

In Advanced Data Datagrid with columns checkbox,textfield, textarea,button,radiobutton. and ADD Button and SUBMIT Button. When i click on ADD Button, those above all fields are need to add dynamically in next row.If i click 10 times on ADD Button, 10 rows with all above fileds need to be added.

If Have any sample code please forward to my gmail id:[email protected].

A: 

Create custom item/row renderers. More Using Item Renderers and Item Editors

zdmytriv
+1  A: 

You should work with the underlying data provider for the adding of new rows. whenever the add button is pressed do

adg.dataProvider.addItem( newItemFromAboveRow );

and the ADG will sort out the display for you.

Gregor Kiddie