Dear Team,
we need to enable copy functionality for our WPF application especially for radgridview. How could i enable this? As per my understanding To enable cell copy i've to do like ClipboardCopyMode="Cell" and SelectionUnit="Cell". If i apply this then row selection is not working because i am using row SelectionChanged event in order to do some operation.
<
telerik:RadGridView
x:Name
=
"gvDefaultDashboard"
AutoGenerateColumns
=
"False"
CanUserResizeColumns
=
"True"
Padding
=
"1,0,0,0"
SelectionMode
=
"Single"
EnableColumnVirtualization
=
"False"
ItemsSource
=
"{Binding RelativeSource={RelativeSource AncestorType=UserControl},Path=DataContext.GetPagedInfo,Mode=TwoWay}"
SelectionChanged
=
"gvDefaultDashboard_SelectionChanged"
Filtering
=
"gvDefaultDashboard_Filtering"
FilterOperatorsLoading
=
"OnRadGridViewFilterOperatorsLoading"
AutoExpandGroups
=
"True"
Sorting
=
"gvDefaultDashboard_Sorting"
Grouping
=
"gvDefaultDashboard_Grouping"
telerik:PersistenceManager.StorageId
=
"{Binding DashBoardPersistenceID,Mode=TwoWay}"
ClipboardCopyMode
=
"Cells"
SelectionUnit
=
"Cell"
>
</
telerik:RadGridView
>
I want to enable cell copy without affection the row selectionchanged event how could i achieve this. Please advice.
Thank you.
When export grid to Excel (using ExcelML format) all numbers are exported as text.
Is there a way to export numbers as formatted numerik values?
Thank you
I am using WPF to build out the mockup shown in the attached image. I wanted to know if the RadTimeline control can be used to build it faster.
Any other suggestions or tips that might help me?
Thanks!
Hi,
What is the best way to implement the feature of switching between Touch and non Touch Screen ?
Is there any way to do it with a single Xaml file not like it is implemented within th telerik WPF Demo ?
Thanks
Hi,
We have a RadDocking control in which one of the RadPane is set to "FloatingDockable" within RadSplitContainer. It is also set to telerik:RadDocking.ExcludedFromLayoutSave="True". At the start of the application we are loading the RadDocking with the saved layout by calling RadDocking.LoadLayoutFromString(layout).
When we load the layout with the above operation, we are not able to see the RadPane that is set to "FloatingDockable". Remaining Rad Panes are appearing without any issue.
Can you please help in identifying what is causing the issue and how to fix the same?
Regards,
Alex
Hi,
I have used Scroll Pattern on RadPropertyGrid to get VerticalScroll Percent but the value is '0.0' only even after the scroll happened till end.
Another problem is with Scrollpattern.ScrollVertical(ScrollAmount.LargeIncrement) method .It is doing smallincrements instead of PageDown or PageUp and vice versa.
Regards,
Nagasree.
Hello,
When we make RadCombobox IsReadonly="True", the value inside is not looking good. It masks the value.
How can we remove the mask or make more transparent to make the value visible more bright ?
Please guide me,
Hi, I have a schedule view that when an appointment is edited, it disappears every second time. Please help.
<telerik:RadScheduleView x:Name="MainSchedule"
Grid.Row="1"
Margin="2"
TimeMarkersSource="{Binding TimeMarkers}"
CategoriesSource="{Binding Categories}"
MinAppointmentHeight="10"
NavigationHeaderVisibility="Collapsed"
AppointmentsSource="{Binding WorkOrderTasks}"
AppointmentCreated="MainSchedule_AppointmentCreated"
ResourceTypesSource="{Binding ResourceTypes}"
AppointmentDeleted="MainSchedule_AppointmentDeleted"
AppointmentEdited="MainSchedule_AppointmentEdited"
CurrentDate="{Binding ElementName=TimeBar,Mode=TwoWay, Path=SelectionStart}"
SelectedAppointment="{Binding SelectedWorkOrderTask,Mode=TwoWay}"
FirstVisibleTime="8:00:00"
ShowAppointmentDeleteButton="False"
ToolTipTemplate="{StaticResource AppointmentToolTipTemplate}">
private void MainSchedule_AppointmentEdited(object sender, AppointmentEditedEventArgs e)
{
VisualPlanningBoardViewModel vm = (VisualPlanningBoardViewModel)this.DataContext;
if (vm != null)
{
vm.UpdateWorkOrderTask((WorkOrderTask)e.Appointment);
vm.UpdateSchedules();
}
}
public void UpdateSchedules()
{
UpdateMinimap();
this.RaisePropertyChanged(() => this.WorkOrderTasks);
this.RaisePropertyChanged(() => this.MiniMapWorkOrderTasks);
}
Hi! I appreciate your time very high but this time I can't go without your help. Please don't consider me as lazy and slothful programmer but I've tryed to solve my problem for all day today and my efforts to solve it remain ineffectual. The matter is in the following: I've studied the Prism 6 application solution you give me as answer on my question at http://www.telerik.com/forums/can-i-use-telerik-styles-for-prism-window-%28wpf%29-and-prism-usercontrol-%28wpf%29-that-are-supplied-with-prism-template-pack-for-prism-6 and try to write similar application myself. But all that is achieved by me here is that the solution of this application is succsesfully built without errors and runs. But herewith the MainWindow of my application is not displayed on the computer screen! I attached the structure of my application solution in Teleril_Prism_Unity.PNG file.I use MS VS 2015 Professional (russified).
Below is App.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
</configuration>
Below is Bootstrepper:
class FcBootstrapper : UnityBootstrapper
{
protected override DependencyObject CreateShell()
{
return Container.Resolve<MainWindow>();
}
protected override void InitializeShell()
{
((RadWindow)this.Shell).Show();
}
}
Below is App.XAML:
<Application x:Class="FlowmeterConfigurator.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:local="clr-namespace:FlowmeterConfigurator"
xmlns:views="clr-namespace:FlowmeterConfigurator.Views">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/System.Windows.xaml" />
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Controls.xaml" />
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Controls.Navigation.xaml" />
<ResourceDictionary Source="/Telerik.Windows.Themes.Office2013;component/Themes/Telerik.Windows.Controls.Docking.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
Below is App.XAML.CS:
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
var bootstrapper = new FcBootstrapper();
bootstrapper.Run();
}
}
Below is MainWindow.XAML:
<telerik:RadWindow x:Class="FlowmeterConfigurator.Views.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
xmlns:prism="http://prismlibrary.com/"
xmlns:views="clr-namespace:FlowmeterConfigurator.Views"
prism:ViewModelLocator.AutoWireViewModel="True"
Header="{Binding Title}" Height="300" Width="300">
<Grid>
</Grid>
</telerik:RadWindow>
Below is MainWindow.XAML.CS:
public partial class MainWindow : RadWindow
{
public MainWindow()
{
InitializeComponent();
}
}
And below is MainWindowViewModel.CS
public class MainWindowViewModel : BindableBase
{
private string _title = "Prism Unity Application with Telerik";
public MainWindowViewModel()
{
}
public string Title
{
get { return _title; }
set { SetProperty(ref _title, value); }
}
}
I created this application as Telerik Empty Project and after added folders there. Then I added RadWindow in Views folder and named it MainWindow and then deleted MainWindow (which was WPF Window) created with the solution. And after it I aded Prism 6 for WPF library via NuGet. Please reply me (if this is possible of course) why MainWindow is not visualized when the application runs. I would be very much obliged to you.
Eugene.