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

Remove Arrow From Row Indicator

3 Answers 692 Views
GridView
This is a migrated thread and some comments may be shown as answers.
heavywoody
Top achievements
Rank 1
heavywoody asked on 20 Aug 2015, 02:19 PM

Is there  way to remove the arrow from the rowindicator column?  I am using the row indicator as more of a multi select piece and don't really want to show that arrow.

 The other question I have is how do you have that arrow not show up until something is selected?  I have tried to set selecteditem=null, but it still shows up.  

 

3 Answers, 1 is accepted

Sort by
0
Dimitrina
Telerik team
answered on 21 Aug 2015, 10:26 AM
Hi,

You may edit the template of GridViewRow and update "PART_IndicatorPresenter" removing the NavigationNavigator.
Alternatively, you may set the RowIndicatorVisibility to "Collapsed". This will remove the whole row indicator.

Regards,
Dimitrina
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
arman
Top achievements
Rank 1
answered on 22 Jul 2018, 06:33 PM

hi

plz fix my code to hide

plz fix my code PART_IndicatorPresenter
<Style  x:Key="GridViewRowStyle" TargetType="{x:Type telerik:GridViewRow}">             <Setter Property="PART_IndicatorPresenter" Value="False"/>    
     </Style>

<telerik:RadGridView x:Name="uxRadGridView_FundList" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" IsReadOnly="True" AutoGenerateColumns="False" ShowGroupPanel="False" MinHeight="200" FontSize="10" >                                 <telerik:RadGridView.Columns>                                     <telerik:GridViewDataColumn x:Name="uxGridViewColumn_FundList_name"  DataMemberBinding="{Binding name}" Header="نام صندوق" UniqueName="name" Width="60"/>                                     <telerik:GridViewDataColumn x:Name="uxGridViewColumn_FundList_cashValue" DataMemberBinding="{Binding cashValue}" UniqueName="cashValue" Header="موجودی نقدی" MaxWidth="90" MinWidth="70" Width="70" />                                     <telerik:GridViewDataColumn x:Name="uxGridViewColumn_FundList_unCashValue" DataMemberBinding="{Binding unCashValue}" UniqueName="unCashValue" Header="موجودی چک" MaxWidth="90" MinWidth="70" Width="70" />                                 </telerik:RadGridView.Columns>                      
       </telerik:RadGridView>

0
arman
Top achievements
Rank 1
answered on 23 Jul 2018, 11:05 AM

I find awnser

XAML
<telerik:RadGridView x:Name="radGridView"RowIndicatorVisibility="Collapsed">

<!-- ... -->

</telerik:RadGridView>

 

https://docs.telerik.com/devtools/wpf/controls/radgridview/rows/customizing-rows

Tags
GridView
Asked by
heavywoody
Top achievements
Rank 1
Answers by
Dimitrina
Telerik team
arman
Top achievements
Rank 1
Share this question
or