Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
315
How to set a WHDG row as "selected" via code after page reload?
posted

Hi, I am using the WHDG. We have a requirement to set a given row-index as "selected" via code when the page is loaded. I have been able to get handle to the row's datakeyID and/or index before .

How do I set the row as "selected/highlighted" when the grid is re-loaded?

I was looking at the article...

http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=2798

UltraWebGrid1.DisplayLayout.Rows[0].Selected = true;
UltraWebGrid1.DisplayLayout.SelectedRows.Clear;

But I could not find a similar method or property for the WHDG rows selection.

Can someone please advise?