Telerik Forums
UI for WPF Forum
1 answer
105 views
hi,
I had a Scheduler and now i want to implement Recurrence into an appointment, it works fine for creating but when appointment had recurrence, i have no way to edit this appointment unless drag this appointment to another position.
This issue not only happen for my scheduler but also for First Look sample of WPF Control Examples, please take a look on this screencast http://screencast.com/t/TojZgsK1
I'm using Telerik WPF version 2011.3.1220.40
Thanks
Kalin
Telerik team
 answered on 30 May 2013
4 answers
238 views
I am planning to use this behavior...

<Grid  >
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="4*"/>
                    <ColumnDefinition Width="4"/>
                    <ColumnDefinition Width="1*"/>
                </Grid.ColumnDefinitions>
                
                <Grid Grid.Column="0">
                    <Controls....../>
                </Grid>

                <GridSplitter Grid.Column="1"/>
                
                <Grid Grid.Column="2" >
                    <Controls: CustomControl/>
                </Grid>
            </Grid>


this custom control in the third column is a rad docking control as shown below:

<telerikDocking:RadDocking x:Name="dockPane" HasDocumentHost="False"> 
                <telerikDocking:RadSplitContainer InitialPosition="DockedRight" Orientation="Vertical" >
                    <telerikDocking:RadPaneGroup Background="White" >
                        <telerikDocking:RadPane  IsPinned="True" CanUserClose="True">

                            <telerik:RadGridView AutoGenerateColumns="False" ShowGroupPanel="False">
                                <telerik:RadGridView.Columns>
                                    <telerik:GridViewDataColumn>
..........
                                    </telerik:GridViewDataColumn>
                                    <telerik:GridViewDataColumn>
..........                                        
                                    </telerik:GridViewDataColumn>
                                </telerik:RadGridView.Columns>
                            </telerik:RadGridView>
                        </telerikDocking:RadPane>
                    </telerikDocking:RadPaneGroup>
                </telerikDocking:RadSplitContainer>            
        </telerikDocking:RadDocking>


Issues i am facing are as follows:
1) After unpinning, on mouse over of unpinned tab, exception is coming (cant not set the property width to -28.4)
2) If you do a unpin, document host is not getting collapse, it is visible, only the rad pane is tabbed on the right hand side but document host background is still visible even though i am setting the document host to false as part of docking control
3) If i want to add a rectangle at the top of the rad docking control , is it possible?
Manoj
Top achievements
Rank 1
 answered on 30 May 2013
1 answer
82 views
Hello

I have a little problem. When I open my DateTimePicker, the time is always display in gray and I don't know how to put it in black. I look in the properties, but I found nothing revelant. I attach a picture of my problem, so you can take a look at it. Anyone know what the problem is ? 

Ps : Here is how I create my dateTimePicker : <telerik:RadDateTimePicker Grid.Column="1"/>

Thank you,
David
Kalin
Telerik team
 answered on 30 May 2013
1 answer
96 views
Hello,

I see that RadPropertyGrid does not support multiselection feature as "SelectedObjects" property in Winform propertygrid, as I can only find 'Item' property, and not 'Items' property. "SelectedObjects" property finds multiple objects' shared properties and displays them, allowing them to be edited at one go. Does RadPropertyGrid have any supports for this, or do you have plans to develop it? This functionality seems crucial for Property Grid controls, so please include it in the nearing internal build.
Maya
Telerik team
 answered on 30 May 2013
1 answer
115 views
I am trying to set my x axis as a date. When I do that it seems to generate a random number of labels where only one has a value associated with it.

For example, if i had these two items:

measures.Add(new RandomItem{ Date = DateTime.Now.AddDays(-3).Date, ValOne= 5, ValTwo = 4, ValThree = 3, ValFour = 2, ValFive = 1 });
measures.Add(new RandomItem{ Date = DateTime.Now.AddDays(-2).Date, ValOne= 5, ValTwo = 7, ValThree = 3, ValFour = 2, ValFive = 1 });

The graph has the x-axis set to autocalculate and I get 13 values on the x-axis but only two distinct and only two are populated with the values above
           
<telerik:ChartArea.AxisX>
 <telerik:AxisX  LabelRotationAngle="90" Title="Day of Month"   IsDateTime="True"    />
 </telerik:ChartArea.AxisX>

What am I doing wrong? How can i get the graph to only show distinct values? I have a series set up for each val where the date is the XValue. This is an MVVM project.
Petar Kirov
Telerik team
 answered on 29 May 2013
6 answers
421 views
Hi, we're evaluating the Telerik suite for Wpf and Silverlight. If we decide to buy a license, we'll need the source code as our release schedule is pretty busy and we can't always wait for possible bugs to be officially fixed.

Looking at the License Agreement:

"1.5 .... (1) year update subscription that will provide you with Minor
and Major Updates for the Software as well as access to certain source
code for the Software"

What does exactly "CERTAIN" source code for the software means? We'll need the source code for the whole suite we're buying. Can you please clarify?

Regards,

Alessandro
Dimitrina
Telerik team
 answered on 29 May 2013
3 answers
266 views
Since our last upgrade (from Q3 2012 to Q1 2013 (2013.1.403.40)) we have some strange behavior in the grid context menu.
You right click on the grid and it always shows up but when you hover the mouse over a sub-menu it doesn't show.
We allow the user to change themes and I have seen it happen in a couple of them so I don't think it is a particular theme issue.
If you right click again to the right or left of where you clicked before and try again the sub menus start working but I can't find a sequence that is consistent.

I have tried but am unable to reproduce the issue on a development computer.
Is this a known issue at all?
Rosen Vladimirov
Telerik team
 answered on 29 May 2013
11 answers
315 views
I have several shape files that define different levels of detail of UK postcodes. They are

Postcode Area (124 polygons)
Postcode District (2833 polygons)
Postcode Sector (9505 polygons)

If I load them into an InformationLayer then we start to get problems with speed especially on the Postcode Sectors.  I have decided that probably the best approach is to use a Dynamic Layer, and then choose which of the polygons to show.

I have a couple of questions

1. Can I instantiate a MapShapeReader on its own without associating it with a layer, and if so, how do I then get the polygons?
2. Once I have the polygons, is there an easy way to work out which polygons should be displayed?

I am currently using the beta software with shp files, but I think the basic principal would work with kml files too

Thanks
Simon
Gaurav
Top achievements
Rank 1
 answered on 29 May 2013
1 answer
72 views
The RadDatePicker is really cool and useful. We would like to add additional supported string formats for when the user types a date manually. This does not affect how dates are displayed, only how edit mode is treated.

I tried to do this by assigning a Converter, but that doesn't trigger until after the RadDatePicker has already converted the string into a date. :(

Is there any way I can override a property or implement an event or something that lets me help the RadDatePicker decode strings to dates of my choice?

* A real example: User types "20130524" without hyphens and I return todays date; "2013-05-24".
* Another (silly) example: User types "in three days" and I return today + 3 days; "2013-05-27".
Kalin
Telerik team
 answered on 29 May 2013
2 answers
348 views
Hi,

I need to disable expand/collapse animations on RadComboBoxes, GridViewFiltering popups etc, because it disturbs the end user.

Using of telerik:AnimationManager.IsAnimationEnabled="False" (on a single control) or AnimationManager.IsGlobalAnimationEnabled = false (globally) have no effect.

The application uses implicit themes.

Thank you for any help.

Björn
Björn
Top achievements
Rank 2
 answered on 29 May 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?