Skip to content

Replies

0
Naga kalyan P
Naga kalyan P answered on Feb 21, 2013 8:48 AM

 wanted to get the rows that are selected and edit the cells only in grid but not entrie grid. Please help me. I am not able to get selected rows, its is displaying is 0

if

(BaseGrid.ActiveRow != null)

            {   

foreach(UltraGridRow row in BaseGrid.Rows)

               {

                 

if (row.Selected)

                   {

                       row.Activation =

Activation.AllowEdit;

                   }

 

               }

            }

0
Naga kalyan P
Naga kalyan P answered on Feb 21, 2013 8:47 AM

I wanted to get the rows that are selected and edit the cells only in grid but not entrie grid. Please help me. I am not able to get selected rows, its is displaying is 0

if

(BaseGrid.ActiveRow != null)

            {    

foreach(UltraGridRow row in BaseGrid.Rows)

               {

                  

if (row.Selected)

                   {

                       row.Activation =

Activation.AllowEdit;

                   }

 

               }

            }