I have a RadGridView with 3 to 15 columns. Depending on user options and the space available, there will be some scrolling. The RowDetails however should not allow scrolling. They should always appear fixed in the window.
My biggest problem is that I have a WrapPanel in these details which decides it has infinite width. I absolutely need it to wrap.
The second goal would be to make the wrap panel stay in view even when the grid is scrolled although this isn't quite as important.
The RowDetails has a DataTemplate. The DataTemplate contains a StackPanel oriented vertically, and then contains a WrapPanel and a TextBlock. Both the WrapPanel and the TextBlock need to wrap.
Is this possible?
My biggest problem is that I have a WrapPanel in these details which decides it has infinite width. I absolutely need it to wrap.
The second goal would be to make the wrap panel stay in view even when the grid is scrolled although this isn't quite as important.
The RowDetails has a DataTemplate. The DataTemplate contains a StackPanel oriented vertically, and then contains a WrapPanel and a TextBlock. Both the WrapPanel and the TextBlock need to wrap.
Is this possible?