This question is locked. New answers and comments are not allowed.
I have a gridview nested like this:
Style A works fine and the columns are displayed from the style, but Style B does not. The data gets into the inner gridview, but no columns show up unless I set AutoGenerateColumns to true. I'm setting the first gridview to style A that includes a gridview inside of the style that I need to set to style B. Is there some weird thing that won't let you set the style of a gridview that is inside another style? The main gridview is in a page/view and both of the styles are in a resource dictionary.
<radtabcontrol> <radgridview style="styleA"> <rowdetails> (from inside style A)
<radtabcontrol> <radgridview style="styleB"/> </radtabcontrol> </rowdetails> </radgridview></radtabcontrol>Style A works fine and the columns are displayed from the style, but Style B does not. The data gets into the inner gridview, but no columns show up unless I set AutoGenerateColumns to true. I'm setting the first gridview to style A that includes a gridview inside of the style that I need to set to style B. Is there some weird thing that won't let you set the style of a gridview that is inside another style? The main gridview is in a page/view and both of the styles are in a resource dictionary.