This question is locked. New answers and comments are not allowed.
sankar kanna
Top achievements
Rank 1
sankar kanna
asked on 18 Aug 2009, 12:59 PM
In the radgridview, I have 4 columns,In the third column I have a Rad ComboBox which is inside data template. when I move the columns with tab, I could see the the text "ChoiceListItem" displayed (defined type) when the tab focuses on the specific column which contains the combobox.I do not want the text to be displayed. Instead I want to display the radcomobox control itself.
Kindly help me out.
Kindly help me out.
4 Answers, 1 is accepted
0
Hi sankar kanna,
If this combo is inside CellEditTemplate you can move it directly in CellTemplate.
Kind regards,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
If this combo is inside CellEditTemplate you can move it directly in CellTemplate.
Kind regards,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
sankar kanna
Top achievements
Rank 1
answered on 19 Aug 2009, 09:06 AM
Hi thanks for the reply,
Already the combobox is inside the celltemplate only.
the code snippet is
Already the combobox is inside the celltemplate only.
the code snippet is
<gridView:GridViewDataColumn HeaderText="" Width="100" UniqueName="ModeofIncreases" >
<gridView:GridViewDataColumn.CellTemplate>
<DataTemplate>
<input:RadComboBox HorizontalAlignment="Left" VerticalAlignment="Center" FontWeight="Bold" FontFamily="Lucida Sans Unicode" FontSize="10" Foreground="#666666" Grid.Row="1" Grid.Column="2" Background="#FFFFFF" MinWidth="80" Margin="0,0,5,0" x:Name="cboCompChange" DisplayMemberPath="Text" ItemsSource="{Binding ModeofIncreases}" SelectedItem="{Binding ModeofIncrease, Mode=TwoWay}" />
</DataTemplate>
</gridView:GridViewDataColumn.CellTemplate>
</gridView:GridViewDataColumn>
0
Hi sankar kanna,
If the combo is in a CellTemplate you should see the combo all the time. Isn't the combo always visible?
Greetings,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
If the combo is in a CellTemplate you should see the combo all the time. Isn't the combo always visible?
Greetings,
Milan
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
sankar kanna
Top achievements
Rank 1
answered on 21 Aug 2009, 02:53 PM
Thanks,
The combo is visible always.
The combo is visible always.
