Hi,
I am using <telerik:GridViewDataColumn in which I have a DataTemplate. In this Datatemplate,I have my popup. I have written the below code in file say for example Sample.xaml. In the eventhandler 'PreviewTextInput' written in file Sample.xaml.cs, I need to set the 'BeadPlexNameInvalidPopup.IsOpen' property to true. Is there any way to access the popup in file Sample.xaml.cs?
Any small help would be appreciated!
<telerik:GridViewDataColumn x:Name="GridviewColumn" Header="{x:Static res:Resources.BeadPlexName}"
DataMemberBinding="{Binding Name}"
Width="*"
EditTriggers="CellClick">
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<Grid x:Name="Grid1">
<TextBox x:Name="BeadPlexNameTextBox" Text="{Binding Name, UpdateSourceTrigger=PropertyChanged}" MaxLength="70"
PreviewTextInput="BeadPlexName_OnPreviewTextInput">
</TextBox>
<Popup Name="BeadPlexNameInvalidPopup" >
<ContentControl Template="{StaticResource InvalidCharPopupTemplate}" >
</ContentControl>
</Popup>
</Grid>
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
<telerik:RadNumericUpDown HorizontalAlignment="Center" Value="{Binding Path=AdditionalCosts,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}" IsEditable="True" AutoReverse="False" Minimum="0" SmallChange="1" LargeChange="5" ValueFormat="Numeric" IsInteger="True" />I am programatically moving the scroll bar on my chart as data comes in but I want it to stop if a user takes control of the scroll bar on the horizontal axis.
Is there a simple way to do this?
Right now I am keying off of the rangechanged event to see if my minimum is less than the previous minimum but this only works for scrolling backwords and I cannot do this for forwards since the event is fired when I need to shift it programatically also.

Hello,
With this provider, the mini map is no more displayed.
That's certainly because you have introduced the StandardModeUserAgent property and this property is not copied to the mini map...

I want to use Telerik implicit styles because this seems to be the favorite technique to use with Telerik controls.
So I use the Telerik noxaml dll's in my project.
I have made a separate class library in which I have included the Telerik resources (the theme resource files). These resources are merged at startup (in the Application class) using code like
Current.Resources.MergedDictionaries.Clear();Application.Current.Resources.MergedDictionaries.Add(new ResourceDictionary{ Source = new Uri("/libraryDll;component/Themes/System.Windows.xaml", UriKind.Relative)});
When running the application all works fine and the radwindow is displayed and styled correctly.
However, at design time I don't see anything. This is (of course) because at design time the xaml resources are not available (loaded).
How do I fix this problem so I can see the telerik controls at design time? If you can't see the controls you can't design a window can you?
Regards,
Peter

After changing the axis maximum here I want to have the step size change so I can see a label for 130. How can I accomplish this?
<telerik:RadCartesianChart ClipToBounds="False" Margin="20"> <telerik:RadCartesianChart.HorizontalAxis > <telerik:LinearAxis Maximum="130" LastLabelVisibility="Visible" > </telerik:LinearAxis> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.VerticalAxis > <telerik:LinearAxis /> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.Series> <telerik:ScatterAreaSeries > <telerik:ScatterAreaSeries.DataPoints> <telerik:ScatterDataPoint XValue="30" YValue="1"/> <telerik:ScatterDataPoint XValue="130" YValue="1"/> </telerik:ScatterAreaSeries.DataPoints> </telerik:ScatterAreaSeries> </telerik:RadCartesianChart.Series></telerik:RadCartesianChart>
I have placed a text box control and I have to write validation rule for it.
But the problem is I have bound a collection to the grid view and I have declared only two columns
one for binding Name
other for value [data template changes depending on property] so I have overridden selecttemplate method . Based on the item input I have choosen the datatemplate.
Now if write a validation rule for text box ,it applies for all the text boxes in grid.The rule should be individual for each textbox
Can you help me resolving the issue.

Hello,
I'm trying to connect a connector with the shape created dynamically when a connector is created from a existing shape but the user drop the connection on an empty space.
Actually i m able to create the new shape at the right position (on the EndPoint of the connection) but i m possible in the AddLink method to associated the connection with the new shape on the right connector .
The connection is never associated with the connector when i set the TargetConnectorSource
