Hi,
I have one column in RadGridview With combobox once I click on add new row , select a item in combobox and click somewhere in grid the value is not committing .Only when I select other row or click on the row header it is committing.I want to commit my cell data once I lose focus from that cell.How to achieve it??
Regards,
Nagasree.
Hi,
I tried to add patterned brushes for Categories to edit appointment dialog. the patterned brushes is similar to "tentative" timemarker in SDK samples.
but don't how to do it.
such as:
this.categories.Add(new Category("Unconfirmed project", myHatchBrush));
thanks,
-Jacky
ApplicationMenu is displayed in wrong position.
Some PCs display properly but others are not.
I used very simple xaml. Telerik for WPF version is 2017.1.117.45.
<Window x:Class="RadRibbonTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:RadRibbonTest"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<telerik:RadRibbonView ApplicationButtonContent="File" >
<telerik:RadRibbonView.ApplicationMenu>
<telerik:ApplicationMenu>
<telerik:RadRibbonButton Text="New" />
</telerik:ApplicationMenu>
</telerik:RadRibbonView.ApplicationMenu>
</telerik:RadRibbonView>
</Grid>
</Window>
Hi.
I am trying to add new item into GridView with UI.
My GridView ItemsSource setting. Analytics_Passports_FIO implements INotifyPropertyChanged:
AnalyticsPassportsLinqToSqlDataContext dc =
new
AnalyticsPassportsLinqToSqlDataContext(Properties.Settings.Default.DefaultConnectionString);
var query = (from u
in
dc.Analytics_Passports_FIO select u);
var FIOs =
new
ObservableCollection<Analytics_Passports_FIO>(query);
GridFIODetails.ItemsSource = FIOs;
My FilterDescriptor inititalizing:
FilterDescriptor filter =
new
Telerik.Windows.Data.FilterDescriptor(
"user_id"
, Telerik.Windows.Data.FilterOperator.IsEqualTo, id);
GridFIODetails.FilterDescriptors.Clear();
GridFIODetails.FilterDescriptors.Add(filter);
If i am trying to add new item in GridView with default UI abilities(NewRow button) it doesn't appears in grid.
What am i doing wrong?
Greetings,
Please tell me how to make resizable scrollbar to transparent..
I will be using Visual Studio Test Pro 2015 (with MS Test Manager) and I need to know if MTM will recognize Telerik controls when I create an Action Recording on my WPF app.
Thanks!
-Dale
Hello, I'm trying RadDatePicker WPF (2016.1.112.45), but the day numerals are not shown in "Arabic Numerals".
And also there is another problem, when I'm selecting the day from popup, its been converted to hicri date on the top side.
The startup code : (App.xaml.cs)
1.
Thread.CurrentThread.CurrentCulture =
new
CultureInfo(
"ar-SA"
);
2.
Thread.CurrentThread.CurrentUICulture =
new
CultureInfo(
"ar-SA"
);
What am i doing wrong?
Note :
I'm trying this on Visual Studo 2013, win7(64bit) Turkish.
Hello. I have a database on MS SQL Server 2014 Express LocalDB. Lets call this database 'My_Db'. My_Db database has the folowing hierarchy: highest-level master table called 'Devices' has 'Id' field that is primary key. Devices table has one detail table called 'SavedSessions" which has 'Id' field that is primary key and 'Devices_Id' field that is foreign key referenced to Devices.Id field. SavedSesions table has (in its turn) two detail tables: SavedSessionEventLogs and SavedSessionRegisters. Each one of this last two tables has 'SavedSessions_Id' field which is foreign key referenced to SavedSessions.Id field. In my client WPF MVVM application I need to display these four tables in master/detail hierarchy but this herarchy must not be nested. So each of this table must be displayed in its own grid (for example RadGridView). So if I select record in Device table' grid then content of SavedSession table' grid must be accordingly changed and the first record must be selected there. This accordingly entails the appropriate changing of content of SavedSessionEventLogs and SavedSessionRegisters tables. I want to build this master/detail view using QueryableEntityCollectionView and four instance of RadGridView. I had browsed many appropriate information in Google but not found any useful information. So I'll be very grateful if you give me an example of such an application.