Is there a way to have the Search box selected when a window with RadGridView is initialized? I want the user to be able to search straight away, without having to first click on the search box to enter text.
Hi Telerik,
I'm working with your outlook inspired template for VS 2018 and is a bit stucked.
For the moment, the data in the data-grid seem displays the data from the outlook section.
My problem is: I want the data in the data-grid to be displayed independently from the outlook section, which means, that by removing the outlook section, the data in the data-grid should not disappear.
What is the easiest way for me to achieve this, without breaking functionality like hasSelected unread/read?
However, the data I want to display is the exact same emails created in the SampleContentService, I just don't want to bind the data-grid to these folders in the outlook sections.
Thanks
Hi,
How can I change ItemsSource in the outlook template?
At the moment, it seems like the e-mails shown in the data-grid is retrieved through the Outlook Section.
How can I bind data independent of the outlook section? Because I'm thinking of removing the OutlookBar and OutlookItem (Panel of the left side), and this makes the e-mails from the data-grid disapp
private static ObservableCollection<ContractGroup> _contractGroup;
public static ObservableCollection<Contract> GetContracts(int size, string keyword)
{
var contracts = new ObservableCollection<Contract>();
for (int i = 1; i <= size; i++)
{
XamlFormatProvider xamlFormatProvider = new XamlFormatProvider();
contracts.Add(new Contract() { Symbol = test
}
return contracts;
}
I want to retrieve the contracts,directly from the SampleContentService, how can I do this?
I have a simple RadGridView (no filtering/no grouping)
I have a Column defined as below with the ItemsSource bound to a CollectionViewSource with a single PropertyGroupDescription.
I want to show the items in the combo popup grouped.
<telerik:GridViewComboBoxColumn DataMemberBinding="{Binding Left}" DisplayMemberPath="Name" Header="Left" IsFilterable="False" ItemTemplate="{DynamicResource itmTemplate}" ItemsSource="{Binding LeftCVS.View}" SelectedValueMemberPath="Index" GroupHeaderTemplate="{DynamicResource hdrTemplate}" UniqueName="left" />
For a normal RadComboBox I can do it by setting the GroupStyle. Can't find the equivalent on the GridViewComboBox.
Help!
Jurgen

Hi,
I have a GridViewComboboxColumn, I want to make it can select the value from the drop down list and also can be editted mannually. Following is the code:
<telerik:GridViewComboBoxColumn Header="Tool Name" DataMemberBinding="{Binding ToolName}"
UniqueName="ToolName"
FilterMemberPath="DisplayName"
SelectedValueMemberPath="Name"
DisplayMemberPath="DisplayName"
ItemsSource="{Binding ToolNames}"
IsComboBoxEditable="True">
But after I manually edited the combobox, and click other cell, the combobox becomes empty. Can anyone help? Thanks!
Hi,
is there any method to export an Spreadsheet to Object Dataset ?
