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
180
Painting problem many grid in one grid
posted

I m getting problem of painting multiple grid in one grid.

I have also tried  below coding in initializelayout event. But it is not working.

  e.Layout.MaxRowScrollRegions = 1;

 

Parents
No Data
Reply
  • 37774
    posted

    Did you also try setting e.Layout.MaxColScrollRegions = 1?  Another option might be to clear any existing ones:

    e.Layout.ColScrollRegions.Clear();
    e.Layout.RowScrollRegions.Clear();

    -Matt

Children
No Data