This is a migrated thread and some comments may be shown as answers.

How Can I check for a new row in a RadGridView

1 Answer 254 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Charles
Top achievements
Rank 1
Charles asked on 12 Jul 2011, 10:38 AM
I have a RadGridView, I want to check for a new row.
Is there the IsNewRow properties  in RadGridView?

1 Answer, 1 is accepted

Sort by
0
Svett
Telerik team
answered on 13 Jul 2011, 04:03 PM
Hello Bang,

Thank you for writing.

There is not such a property. Nevertheless, you can handle the UserAddedRow event where you can use the Tag property and set it this way:

void grid_UserAddedRow(object sender, GridViewRowEventArgs e)
{
    e.Row.Tag = "IsNew";
}

I hope you find this helpful. Let me know if you have further questions.

Kind regards,
Svett
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
GridView
Asked by
Charles
Top achievements
Rank 1
Answers by
Svett
Telerik team
Share this question
or