Telerik Forums
UI for WPF Forum
1 answer
1.5K+ views

Hi,

    I am trying to bind dictionary object to ListBoxControl as shown below

         <telerik:RadListBox ItemsSource="{Binding Path=BooksAvailable}" Height="270">
            <telerik:RadListBox.ItemTemplate>
                <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <CheckBox IsChecked="{Binding Path=Value}"
                       Width="20" />
                    <TextBlock Text="{Binding Path=Key}"
                       Width="100" />
                </StackPanel>
                </DataTemplate>
            </telerik:RadListBox.ItemTemplate>
        </telerik:RadListBox>

      I want to do two way binding of the values so that if user unchecked I have to update internal Boolean value property.But it is giving exception two way binding can't be possible with dictionary value.

Please help to resolve this.

 

Regards,

Nagasree.

Polya
Telerik team
 answered on 19 Sep 2016
1 answer
482 views
Is there any way to implement Excel-style "Delete" key behavior for selected cells in RadGridView? I want the Delete key to clear the selected cell's contents, setting the underlying data-bound property value to null or whatever the default value of the databound type is.
I haven't been able to find any info on whether this is possible-- somebody posted a related issue in 2010 (http://www.telerik.com/forums/cleaar-the-cell-content-at-runtime) but it does not appear to have been resolved.
Could someone please help me implement this behavior? I'm currently trying to override the delete key in a custom KeyboardCommandProvider but none of the RadGridViewCommand options do what I want.
Dilyan Traykov
Telerik team
 answered on 19 Sep 2016
1 answer
143 views

Hey telerik,

 

My grid's external spinner (RadBusyIndicator) won't work when grouping the grid. It works only when loading data.

Here is some sample code illustrating my scenario:

<telerik:RadBusyIndicator Name="busyIndicator" IsBusy="True" DisplayAfter="0">
           <telerik:RadGridView Name="RadGridView"  ItemsSource="{Binding View}" IsReadOnly="True" Style="{StaticResource VitorStyle}"  AutoGenerateColumns="False">

private void Window_Loaded(object sender, RoutedEventArgs e)
        {
            ((ViewModel)DataContext).Load(complete);
            var view = (DataContext as ViewModel).View;
            view.ItemsLoading += View_ItemsLoading;
            view.ItemsLoaded += View_ItemsLoaded;
 
 
            //the spinner wont work for the grouping.
            //this.RadGridView.Grouping += RadGridView_Grouping;
            //this.RadGridView.Grouped += RadGridView_Grouped;
            //this.RadGridView.GroupRowIsExpandedChanging += RadGridView_GroupRowIsExpandedChanging;
            //this.RadGridView.GroupRowIsExpandedChanged += RadGridView_GroupRowIsExpandedChanged;
        }
        //private void RadGridView_GroupRowIsExpandedChanged(object sender, Telerik.Windows.Controls.GridView.GroupRowEventArgs e)
        //{
        //    this.busyIndicator.IsBusy = false;
        //}
 
 
        //private void RadGridView_GroupRowIsExpandedChanging(object sender, Telerik.Windows.Controls.GridView.GroupRowCancelEventArgs e)
        //{
        //    this.busyIndicator.IsBusy = true;
        //}
 
 
        //private void RadGridView_Grouped(object sender, GridViewGroupedEventArgs e)
        //{
        //    this.busyIndicator.IsBusy = false;
        //}
 
 
        //private void RadGridView_Grouping(object sender, GridViewGroupingEventArgs e)
        //{
        //    this.busyIndicator.IsBusy = true;
        //}
 
 
        //B)
        private void View_ItemsLoading(object sender, VirtualQueryableCollectionViewItemsLoadingEventArgs e)
        {
            this.busyIndicator.IsBusy = true;
        }
 
        private void View_ItemsLoaded(object sender, VirtualQueryableCollectionViewItemsLoadedEventArgs e)
        {
            this.busyIndicator.IsBusy = false;
        }

public class ViewModel
{
    public VirtualQueryableCollectionView View { get; set; }
    Controller controller;
 
    public ViewModel()
    {
        controller = new Controller();
    }
    public void Load(bool complete)
    {
        //G the virtual queryable collection. this is the Key Class telerik grid needs to perform the Infinite scrolling. or virtualization.
        View = new VirtualQueryableCollectionView(controller.GetList(complete)) { LoadSize = 10 };
    }
 }

 

This spinning issue has been troubling me for quite some time by now.

It won't show on grouping, sorting and filtering.

 

please send a light

 

Thank you!

Stefan Nenchev
Telerik team
 answered on 19 Sep 2016
3 answers
74 views

Hi,

I'm creating RibbonView with an ApplicationMenu, I have several items, and it structured in 2 levels.

The 2nd level can has a lot of voice, these voices exeeds over ApplicationMenu area.

I tryed to value ApplicationMenu.Content with Grid sized, but ApplicationMenu area does not expand.

How should I go about doing this?

 

Dario Concilio
Top achievements
Rank 2
 answered on 19 Sep 2016
2 answers
199 views

Hi to all,

I create a docking, when add new usercontrol, I insert a new RadPane that contains the usercontrol selected, ok.

After I add other one usercontrol, docking activates my last usercontrol, ok.

In my 2nd usercontrol I have gridview, apply filter by filtersearch.

Click on 1st usercontrol (first radpaneheader),

after that, click again on 2nd, my filter is cleared, and gridview reload all data.

Can I disable this behavior?

 

 

Dario Concilio
Top achievements
Rank 2
 answered on 19 Sep 2016
3 answers
73 views

I am currently upgrading our customer Aplication from Telerik UI for WPF version 2010.3.1314 to Telerik UI for WPF version 2016.2.613

Currently I am upgrading RadScheduler to RadScheduleView in XAML file.

  • ViewMode="Day"
    ===> ActiveViewDefinitionIndex="0"
    <telerik:RadScheduleView.ViewDefinitions>
        <telerik:DayViewDefinition/>
        <telerik:MonthViewDefinition/>
        <telerik:WeekViewDefinition/>
        <telerik:TimelineViewDefinition/>
    </telerik:RadScheduleView.ViewDefinitions>
  • AppointmentTemplate="{StaticResource AppointmentTemplate}"
    ===> AppointmentItemContentTemplate="{StaticResource AppointmentTemplate}"
  • SelectedViewStartDateChanged="_RadScheduler_SelectedViewStartDateChanged"
    ===> VisibleRangeChanged="_RadScheduler_SelectedViewStartDateChanged"
  • SelectedTimeSlot="{Binding Path=SelectedTimeSlot,Mode=TwoWay}"
    ===> SelectedSlot="{Binding Path=SelectedTimeSlot,Mode=TwoWay}"
  • IsReadOnly="True"
    ===> SpecialSlotsSource="{Binding EventSlots}"
  • IsViewModeNavigationEnabled="True"
    ===> NavigationHeaderVisibility="Collapsed"
  • MonthViewScrollBarVisibility="Collapsed"
    ===> ???
  • CalendarVisibility="Visible"
    ===>???
  • DisplayEmptyGroup="False"
    ===><telerik:RadScheduleView.GroupDescriptionsSource ShowNullGroup="False">
            <telerik:GroupDescriptionCollection />
            </telerik:RadScheduleView.GroupDescriptionsSource>
  • ActiveViewDefinitionChanged="_RadScheduler_ActiveViewDefinitionChanged"
    ===>AppointmentSelectionChanged ="_RadScheduler_ActiveViewDefinitionChanged"
  • TimeSlotTemplateSelector="{StaticResource SelectTemplate}"
    ===>AppointmentItemContentTemplateSelector="{StaticResource SelectTemplate}"

I cannot run the program yet because of a large number line of code in project.

Please help me to review my modify source code, expecialy how to migrate MonthViewScrollBarVisibility="Collapsed" and  alendarVisibility="Visible". 

Thanks,Liem.

Yana
Telerik team
 answered on 19 Sep 2016
7 answers
231 views

Hi,

RadGridView behavior after update/insert row is different between NewRowPosition="Top" and NewRowPosition="Bottom".
When position is defined "top", after saving the scroll is on the same position as before saving. However, when the position is defined "Bottom", after saving it scrolls to top.
Workaround with ScrollIntoView() is not useful in my case, because I may have many rows updated.
How can I achieve the same behaviour as NewRowPosition="Top" after saving?

Thanks

Lynda Golomb
Top achievements
Rank 1
 answered on 18 Sep 2016
9 answers
2.1K+ views
How I can programmatically clear all filters that have been manually set using the built in 'column' filters?
I want to add a 'CLEAR FILTERS' button.
thx again
John
Top achievements
Rank 1
Iron
 answered on 16 Sep 2016
4 answers
192 views
On the left of the grid records there is a gray area of a few pixels, is there any way to remove this so that the records data is directly left-aligned against the edge of the grid?
Stefan
Telerik team
 answered on 16 Sep 2016
3 answers
341 views

Hi,

  I want to show ListItems with Checkboxes as shown in the attached image,so that user can select multiple options in the dropdown option of PropertyGrid.

How to achieve this??

Regards,

Nagasree.

 

  

Stefan Nenchev
Telerik team
 answered on 16 Sep 2016
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Slider
Expander
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
WebCam
CardView
DataBar
Licensing
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
HighlightTextBlock
Security
TouchManager
StepProgressBar
VirtualKeyboard
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?