or
Hi
After I download the new dlls of telerik the grid start to do auto validation
We are implementing I Data Error Info interface and the grid catch all the exceptions
That was thrown.
I need to disable the validation in the grid
Best Regards
Ehud
Dim financialInfoProvider As New XmlDataProvider() Dim finacialInfoXMLPath As String = String.Empty finacialInfoXMLPath = BuildFinancialInfoXML() financialInfoProvider.IsAsynchronous = TruefinancialInfoProvider.Source = New Uri(finacialInfoXMLPath, UriKind.RelativeOrAbsolute) financialInfoProvider.XPath = "/RemainingFinancialInfo/Property"m_GridDataSource = New ObservableCollection(Of XmlNode)(DirectCast(financialInfoProvider.Data, IEnumerable(Of XmlNode)))
In the RadPanelBar, I added a user control that has a few text boxes. When I select the RadPanelBarItem, I’m unable to get the focus on the first textbox in the user control. I have the FocusManger.FocusedElement bound to the first text box in the user control. How can I get the focus to the first textbox in the user control? Please advise.
Thanks
RJ
Loaded += (s, e) => { var today = DateTime.Today; calendar.SelectedDate = new DateTime(today.Year, today.Month, 2); calendar.SelectedDate = new DateTime(today.Year, today.Month, 1); };Is this a bug? Is there a better way to default to the current month?
public partial class MyClass : Page { public List<MyTable> myList { get; set; } public Drzava() { using (MyModel dbContext = new MyModel()) { myList = dbContext.MyTable.ToList(); } InitializeComponent(); myGridView.DataContext = myList; } }<telerik:RadGridView Name="myGridView" Margin="12,65,12,12" ItemsSource="{Binding ElementName=myPage,Path=myList}" AutoGenerateColumns="False"> <telerik:RadGridView.Columns> <telerik:GridViewColumn DataContext="{Binding Path=Id}"></telerik:GridViewColumn> </telerik:RadGridView.Columns> </telerik:RadGridView>
<Grid> <Grid.RowDefinitions> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid.Resources> <HierarchicalDataTemplate x:Key="NodeTemplate" ItemsSource="{Binding SubFolders}"> <TextBlock Text="{Binding Name}"/> </HierarchicalDataTemplate> </Grid.Resources> <telerik:RadTreeView Name="uxRadTreeView" ItemsSource="{Binding RootFolder.SubFolders}" ItemTemplate="{StaticResource NodeTemplate}" AllowDrop="False" IsDragDropEnabled="True" DragEnded="uxRadTreeView_DragEnded" /></Grid>