vote up 1 vote down star

Is it possible to add a row to a gridview at runtime? I need to add a default row(sometimes) and then add an adhoc row after the bound row based on a value in the bound row.

gridView.DataSource = source;
/// Create a new Default Row here
gridview.DataBind();

AND

OnDataBound(object sender, DataGridEventArgs e)
//evaluate each row and if certain criteria add a new row.
flag

2 Answers

vote up 1 vote down check

It would be easier to determine if you need to add additional rows before databinding.

link|flag
vote up 2 vote down

This might solve your problem.

link|flag

Your Answer

Get an OpenID
or

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