6 Answers, 1 is accepted
The first column is our indicator column and the second one is actually the frozen column splitter. You can hide both by setting RowIndicatorVisibility to "Collapsed" and CanUserFreezeColumns to "False".
Regards,Milan
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.
<telerikGridView:RadGridView x:Name="tgvHospitals" |
ShowGroupPanel="False" CanUserSelect="False" IsReadOnly="True" |
RowIndicatorVisibility="Collapsed" CanUserFreezeColumns ="False"> |
I've attached an example project using our latest binaries.
Best wishes,
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.
Hi Terry, I hope you've already solved the problem till now, but here is what I found in my application.
Thanks for your question as it helped me hide the first column.
About the column that you still see, this may be representing something, like in my case when I add items to the grid, this column will contain a '+' symbol to expand the details of the item.
Thanks again!
Mayer,
Hi Terry,
I came across the same situation in my Application. Here is solution I found.
Set the attribute AllowRowResize to False for the Radgrid in Client settings..
<ClientSettings ........>
<Resizing AllowRowResize="False"............. ></Resizing>
</ClientSettings>