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
150
GetUIElement() Returning Null on selected row.
posted

 

 

 

 

 

 

 

If I select all rows in the ultragrid in question why are the RowUIElements null.

The code I used is shown below.

Thanks,

Bob

if (browseGrid.Selected.Rows.Count > 0)

{

 

 

UltraGridRow

r = browseGrid.Selected.Rows[0];

 

 

RowUIElement rowElement = (RowUIElement)r.GetUIElement();

 

 

if (rowElement == null)

{

//?? Why is rowElement  = null

 

return;