vote up 0 vote down star

I have a gridview which is databound, I want to dynamically add a row with data that I define and away from the databound data, how can I do it?

flag

2 Answers

vote up 1 vote down check

On Client Side using DOM or jQuery to add new row.

On Server Side You must inherit GridView control and override Render function to modify output HTML.

But I don't suggest you to this. Because It break beatiful of OOP programming and It hard to debug when error occur.

link|flag
vote up 0 vote down

For that, you'll have to add an item in your original data source only, coz there's no other way of doing it. To the new item that you added to your data source, you can then add the data you want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.