This is a migrated thread and some comments may be shown as answers.

IsResizable Property

4 Answers 74 Views
GridView
This is a migrated thread and some comments may be shown as answers.
sum sum
Top achievements
Rank 1
sum sum asked on 02 Nov 2009, 04:11 PM
HI Guys,

This really drives me nuts.

I have a radgridview control and I set the CanUserResizeColumns=True and for each column's setting I have set isResizable=True as well. However, I am still unable to resize the columns by dragging the mouse. Did I miss anything? When I place the mouse in between two columns' headers, I don't even see that 'line seperator'.

Thanks,

4 Answers, 1 is accepted

Sort by
0
Vlad
Telerik team
answered on 02 Nov 2009, 04:17 PM
Hello,

Can you post more info about the grid version? Generally you do not have to set any property in order to enable column resizing. An example where this can be reproduced will be appreciated.

Greetings,
Vlad
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
sum sum
Top achievements
Rank 1
answered on 02 Nov 2009, 04:32 PM
See below XAML.

Let me know if you need more information.

 <telerikGrid:RadGridView x:Name="lv"
                      CanUserResizeColumns="True"
                      CanUserReorderColumns="True"
                      CanUserSortColumns="True"
                      ColumnsWidthMode="Fill"
                      UseAlternateRowStyle="True"
                      ItemsSource="{Binding}"
                      AllowDrop="False"
                      AutoGenerateColumns="False"
                      BorderBrush="Transparent"
                      VerticalAlignment="Stretch"
                      HorizontalAlignment="Stretch"
                      IsFilteringAllowed="True"
                      IsReadOnly="True"
                      ShowGroupPanel="False"
                      controls:ScarsinSortableList.IsGridSortable="True"
                      MultipleSelect="False">
 
 <telerikGrid:RadGridView.Columns>
            <telerikGrid:GridViewDataColumn Header="Folder"
                                        UniqueName="FolderName"
                                        IsResizable="True"/>
            <telerikGrid:GridViewDataColumn Header="Desc"
                                        UniqueName="Name"
                                        IsResizable="True"/>
        </telerikGrid:RadGridView.Columns>

 </telerikGrid:RadGridView>

0
Vlad
Telerik team
answered on 03 Nov 2009, 01:01 PM
Hi,

You've missed to specify your grid version. I've tried your grid declaration with our latest binaries however everything worked fine.

All the best,
Vlad
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
sum sum
Top achievements
Rank 1
answered on 03 Nov 2009, 03:51 PM
Thanks for the reply.

I finally found the reason. It is the skin's problem. The skin has a template to remove the header splitter. I don't maintain the skin. That's why I was not aware of it. Thanks guys!
Tags
GridView
Asked by
sum sum
Top achievements
Rank 1
Answers by
Vlad
Telerik team
sum sum
Top achievements
Rank 1
Share this question
or