Telerik Forums
UI for WPF Forum
1 answer
112 views
Hello,

I am using ScheduleView for one of my projects. I want to reduce/Add some of the controls in Recurrence dialog window. There is a way to edit the Recurrence dialog window style of it in Scheduler. How to do the same in Scheduleview? If I follow the same procedure, I am not getting any stryle change.

Please Do help.
Thanks in advance,
Dheena
Konstantina
Telerik team
 answered on 13 Apr 2011
2 answers
98 views
We are testing an app which uses RadDocking under the Citrix XenApp 6.0 environment. When using the Seamless Display mode, the large transparent docking window comes through as a solid colored (non-transparent) window.

Is anyone able to use an app with RadDocking in a Citrix environment?

I'm hoping for a Citrix server regkey or other setting to make the windows come through properly.

John
John Schroedl
Top achievements
Rank 2
 answered on 13 Apr 2011
5 answers
447 views
Hello,

We are using RadTileView in our WPF application. I need to customize the RadTileView in the following two ways.

1. Reduce the header height. It currently seems having lots of margin/padding around the header text and we want to reduce them.

2. Add a delete button ("X") on the left side of the header text (in the maximumized view only). When the button is clicked,
we will remove that item from datasource.

Can you please let me know how to implement above two things?

Thanks!
Zarko
Telerik team
 answered on 13 Apr 2011
1 answer
115 views
I'm just trying to get horizontally reading text on the left hand side of a TabControl. TabControl seems to want to rotate my ItemTemplate. I tried to apply a reverse RotateTransform to it, but it messes up size allocation.

How can I just turn this off?
Tina Stancheva
Telerik team
 answered on 13 Apr 2011
1 answer
237 views
Hello Telerik forums!

I am building a history screen where the user can select all items that have shipped between a start and end date.  To do this I have two RadDatePickers on my view and they are bound to StartDate and EndDate properties of the ViewModel (MVVM pattern with PRISM).  The classic problem I'm trying to solve is preventing the user from selecting a starting date that is greater then the ending date.  Can this be done with the RadDatePicker or should I just handle it in my ViewModel?

Thanks,
Jeremie
Yana
Telerik team
 answered on 13 Apr 2011
2 answers
149 views
Hi,
i'm currently using the AppointmentSaving event of the RadScheduleView for validation.
if the edited or created appointment does not contain the right values a MessageBox should be shown an the appointment should not be saved.

Unfortunatly the MessageBox only shows up for about half a second. The next time i create an appointment the messagebox shows up again, because the AppointmentSaving event is fired again.

As i searched the known bugs, i found that this should already be fixed, but i'm already using the newest dlls and it does not seem to work. Am i doing something wrong?!

thanks in advance!

private void OnKalenderAppointmentSaving( object sender, AppointmentSavingEventArgs e )
{
      var appointment = (SedlakAppointment)e.Appointment;
 
       if( appointment.SelectedUser == null )
       {
           e.Cancel = true
           e.Handled = true;
           this.ViewModel.ShowError( "Cannot create an appointment without user");
       }  
}
Margret
Top achievements
Rank 1
 answered on 13 Apr 2011
1 answer
93 views
Hello
I am using WPF Radgrid
I have a requirement of deleting multiple rows from a grid whose checkbox column is selected.
I am using MVVM Pattern and MVVM light sample where we are using EventToCommand appraoch is being followed.
Vanya Pavlova
Telerik team
 answered on 13 Apr 2011
1 answer
119 views
Looks like VerticalScrollBar is not getting displayed in DocumentPane

Below is the code
<Window x:Class="WpfApplication2.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:Controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
        WindowStartupLocation="CenterScreen"
        HorizontalAlignment="Center"
        VerticalAlignment="Center"
        Width="800"
        Height="600"
        WindowState="Maximized">
  <StackPanel Orientation="Vertical">
    <Controls:RadDocking AllowUnsafeMode="True">
      <Controls:RadSplitContainer VerticalAlignment="Top"
                                  Width="101"
                                  MaxWidth="101"
                                  HorizontalAlignment="Left"
                                  InitialPosition="DockedLeft">
        <Controls:RadPaneGroup HorizontalAlignment="Left"
                               VerticalAlignment="Top">
          <Controls:RadPane Header="Tools"
                            HorizontalAlignment="Left"
                            CanUserClose="False"
                            ContextMenuTemplate="{x:Null}"
                            CanFloat="False">
<ToolBarTray/>
  </Controls:RadPane>
        </Controls:RadPaneGroup>
      </Controls:RadSplitContainer>
      <Controls:RadDocking.DocumentHost>
        <Controls:RadSplitContainer>
          <Controls:RadPaneGroup>
            <Controls:RadDocumentPane Visibility="Collapsed"
                                      CanUserClose="False">
              <Grid Background="Transparent">
                <ScrollViewer HorizontalScrollBarVisibility="Auto"
                              VerticalScrollBarVisibility="Auto">
                  <Canvas Height="600"
                          Width="800"
                          Background="{StaticResource MyGrayGridBrush}">
                  </Canvas>
                </ScrollViewer>
              </Grid>
            </Controls:RadDocumentPane>
          </Controls:RadPaneGroup>
        </Controls:RadSplitContainer>
      </Controls:RadDocking.DocumentHost>
    </Controls:RadDocking>
  </StackPanel>
</Window>


Could anyone help?
Yana
Telerik team
 answered on 13 Apr 2011
2 answers
59 views
Hi
When I data bind TreeView and use IsChecked, witch works fine but it looks something like this:
[ ]Beverages
 |__ [ ] Alcoholic
 |       |__ [X] Beer
 |......

But I would like it to look like this (with the Indeterminate state)
[-]Beverages
 |__ [-] Alcoholic
 |       |__ [X] Beer
 |......

Is there any way to get this functionality when data binding ? or do I need to do this manually ?

Best regards
Kristján
Petar Mladenov
Telerik team
 answered on 13 Apr 2011
2 answers
81 views
Hi,

I have some questions regarding the RadScheduleView:

* I have problems with appointments spanning several days. These event span the whole width of the column in the day or week view. Our users are used to double clicking in the calendar to add a new appointment, but there isn't any room left in the column to click to add an appointment. I know that the All Day list isn't implemented in the RadScheduleView (it is available in the RadScheduler), but I need a temporary solution to this problem - if there is one. Maybe I could limit the width of the appointment box in the calendar, but I don't know how?

* I've localized the ScheduleView so that all time formats are in 24HR format. This works great in the calendar or if I drag an appointment. But if I resizing an appointment, the new time shown while resizing is shown in 12HR format. Have I missed something or is this a bug?

* Is it possible to store time only in hours and minutes, not seconds when dragging or resizing appointments? I've implemented a custom drag drop behavior class so I'm able to remove seconds when storing the appointment i the datastore, but seconds are still visible in the ScheduleView.

Best Regards,
Windev
Carl Björnberg
Top achievements
Rank 1
 answered on 13 Apr 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?