<telerik:RadButton Content="Export" Height="40" Width="50" Command="{Binding ExportCommand, Source={StaticResource context}}" CommandParameter="{Binding}" /><telerik:RadButton Content="Print" Height="20" Width="50" Command="{Binding PrintCommand, Source={StaticResource context}}" CommandParameter="{Binding}" />
Public ReadOnly Property Children As IQueryable(Of BaseLimb) Get Return pGrouper.Children.Select(Function(e) e.Owner).AsQueryable End GetEnd PropertyI had other problems when I just may it an IEnumerable. Is there some else I should be doing to make the change immediate?

Second implementation
The button in the Cell Template is IsEnabled = False and the one in the CellEdit is IsEnabled=true.
In this scenario, when we click on the disabled button on row #2, the validation of row #1 is triggered. The focus on row #2 is set only when row #1 is valid.
However, on row #2 when the Cell Edit template is shown, the focus is set to the first control (Textbox)...
In the second approach, there are 2 problems: 1 - The "click" is not sent to the "Cell Edit" button AND 2 - the "Cell" button is disabled (at first, the user thinks that the button is not accessible.
--------------------------------------------
With that in mind, is there a way to this :
Thanks.
-----------------------------------------------------
Hi,
I am using RadScheduleView for Calendar type implementation.
I implemented filter that works fine for all ViewDefinitions except the ViewDefinition which is first on the NavigationHeader or in other words the ViewDefinition at Index=0 is not performing Filter.
Example:-
Below is the definition of RadSchedulerView that I am using.
<telerik:RadScheduleView Name="xRadScheduleView" AppointmentsSource="{Binding Appointments}" ResourceTypesSource="{Binding ResourceTypeCollection, Mode=TwoWay}" GroupDescriptionsSource="{Binding GroupDescriptions}" MinAppointmentHeight="60" NavigationHeaderVisibility="Visible" SpecialSlotStyleSelector="{StaticResource SpecialSlotStyleSelector}" SpecialSlotsSource="{Binding SpecialSlots}" ShowCurrentTimeIndicator="True" CurrentTimeIndicatorStyle="{StaticResource CurrentTimeIndicatorStyleCustom}" CurrentDate="{Binding CurrentDate, Mode=TwoWay}" Grid.Row="1" VerticalScrollBarVisibility="Auto" VerticalAlignment="Stretch" SelectedSlot="{Binding SelectedSlot, Mode=TwoWay}" SelectedAppointment="{Binding SelectedAppointment, Mode=TwoWay}" HorizontalScrollBarVisibility="Visible" > <telerik:RadScheduleView.DragDropBehavior> <Helper:AppointmentDragDropConditionalBehavior/> </telerik:RadScheduleView.DragDropBehavior> <telerik:RadScheduleView.ViewDefinitions> <telerik:TimelineViewDefinition AppointmentFilter="{Binding FilterValue}"/> <telerik:MonthViewDefinition AppointmentFilter="{Binding FilterValue}"/> <telerik:WeekViewDefinition AppointmentFilter="{Binding FilterValue}"/> <telerik:DayViewDefinition AppointmentFilter="{Binding FilterValue}" /> </telerik:RadScheduleView.ViewDefinitions> </telerik:RadScheduleView><telerik:RadScheduleView.ViewDefinitions> <telerik:TimelineViewDefinition AppointmentFilter="{Binding FilterValue}"/> <telerik:MonthViewDefinition AppointmentFilter="{Binding FilterValue}"/> <telerik:WeekViewDefinition AppointmentFilter="{Binding FilterValue}"/> <telerik:DayViewDefinition AppointmentFilter="{Binding FilterValue}" /> </telerik:RadScheduleView.ViewDefinitions>public Predicate<IAppointment> FilterValue { get { return Filter; } } public bool Filter(IAppointment appt) { if (SelectedProcess == null && !SelectAllProcesses) return false; if (SelectAllProcesses) return true; AppointmentBase app = appt as AppointmentBase; //Custom Appointment return app != null && FilterByProcess(app); } public bool FilterByProcess(DZNEAppointmentBase app) { bool isFiltered = false; isFiltered = this.CheckedProcesses.Where(s => s.ProcessID.Equals(app.Process.ProcessID)).FirstOrDefault() != null; return isFiltered; }Filtering Scenario:
Above scenario works well for all ViewDefinitions such as Day, Week, Month, Timeline and other Custom View definitions if an only if the ActiveViewDefinitionIndex is not ZERO.
So, for above view definition list in code snippet, filter is not working for very first view definition i.e. “TimelineViewDefinition”.
I just want to know what setting I am missing or if there are other ways to implement filter.
Any input will be highly appreciated.