Telerik Forums
UI for WPF Forum
1 answer
142 views
Hi,
I'm trying to apply filter in the rad tree list view, but i want one thing to not to be happend.

Please find the attached image of my result after filtering.

In the image i applied filter to "Project Technical Leaders" including its only next childs.

Now, what I want is that, its child should not be expanded.
i.e.
SrMgr_SRMgr13
SrMgr_SRMgr10
SrMgr_SRMgr9
should be visible only in collapsed form.
Because if we expand them, it take a lot of time to fetch data for all the child, but as filtering is applied, that data is not visible.

Please help me as soon as possible.

Thanks.
Vlad
Telerik team
 answered on 08 Feb 2011
3 answers
211 views
Hi,

I have a requirement to show a grid with a column which is when clicked, a rich text box in a popup (adjacent to the clicked cell) should appear.

I saw a similar implementation of DatePicker in online documentation. Is there anything in-built way of implementing my requirement? If not, recommended solution?

Thanks,
AK
Vlad
Telerik team
 answered on 08 Feb 2011
4 answers
114 views
I am using the standard filtering with the the GridView control.  When I click on the filter button in the column header the filter dialog is displayed.  When I attempt to click anything inside the filter dialog it immediately closes.  It does not matter where in the filter dialog I click.
Stefan
Top achievements
Rank 1
 answered on 08 Feb 2011
3 answers
230 views
If I open a popup window which contains a text box the contents of the box lags behind the keyboard.

The window is opened as:
           
RadWindow host = new RadWindow();
host.Content = new UserControl1();
host.ShowDialog();

where UserControl1 contains a combo box and a text box inside a standard UserControl

Konstantina
Telerik team
 answered on 08 Feb 2011
3 answers
118 views
can we have a radpager for Treelistview control? if yes, how it works in case of ondemand load(upon expand a node, get the data).

Thanks,
Suman
Rossen Hristov
Telerik team
 answered on 08 Feb 2011
5 answers
171 views
Hi,
  I recently noticed the memory usage of my application increasing when I repeatedly expanded and collapsed items.  I immediately assumed that I had set something up incorrectly, so I immediately created an application using the code in the getting started tutorial, and indeed it appears to suffer from the same issue.  In order to reproduce this issue you can run the code from the getting started tutorial and repeatedly expand and collapse one of the items.  I am referencing telerik controls version 2010.2.812.35.  All work was completed in Visual Studio 2008.

Is this a known issue?  Is there a known workaround?

Thanks,
-Gabe
Hristo
Telerik team
 answered on 08 Feb 2011
0 answers
119 views
Hi
My requirement is to have tab control having all its tab items horizontally where each tabitem  will be overlapping with another tab item
Asish
Top achievements
Rank 1
 asked on 08 Feb 2011
2 answers
183 views
I am working on my first WPF app and am trying to find similar functionality in the RadGridView that exists in the RadGrid for ASP.NET which I have lots of experience in.

With RadGrids, I could create a GridTemplateColumn that contains various controls like labels and dropdowns that I could acquire instances of using .FindControl() in the codebehind's ItemDataBound event.  I could then put any text I wanted into these controls based on logic in the codebehind.

I discovered the DataTemplate object in the RadGridView, but it seems I can only use this to bind data from an object's member property.  What I want to do is insert my own custom information directly rather than rely on an object member since the data I want to display might not be offered by any member within the object.

Links to where this information can be found will be all I need unless you'd like to offer any other additional info here.
gunther
Top achievements
Rank 1
 answered on 07 Feb 2011
4 answers
177 views
I am experiencing some odd behavior with Grouping.

1) Image Grouping 1.jpg relates to this behavior.  I have dragged my column (called 'TDC') to the Grouping Header.   Grouping shows correct, except for the rows where the value in the TDC column exceeded 8 characters.  For that the heading above the grouped row is blank. All other rows are grouped correctly and the heading shows correctly.  Note that the Grouped by displays TDC, which is correct.

2) Image Grouping 2.jpg relates to this behavior.   Instead of dragging the TDC column to the Grouping Header I am using the Right Click Context menu.  The code for this comes verbatim from the Telerik Examples for WPF.  The same grouping behavior as in 1 is observed.  The Grouped by displays CurrentTDCString instead of the TDC. The Unique Name is displayed instead of the Header Name.

3) Image Grouping 3.jpg relates to this behavior.  I have dragged my column (called 'Sub TDC') to the Grouping Header.   Grouping is done correctly, but the heading above all the grouped rows are always empty. 

Both the TDC and Sub TDC columns are bound to Combobox items. The difference between the TDC and Sub TDC columns are that the TDC column use the ItemsSource binding while the Sub TDC use the ItemsSourceBinding binding.  I have to do this because the items source for the Sub TDC column depends on the value selected in the TD column.

Help appreciated.
Stefan
Top achievements
Rank 1
 answered on 07 Feb 2011
4 answers
334 views
Hi

My RadTreeView's are in a HiearchicalDataTemplate so the number of TreeViews is not known at design time.

I need to handle the ContextMenu's click event on a RadTreeViewItem but obviously I cannot just write RadTreeView.AddHandler

Does anyone have an alternative idea?

Thanks.

<Grid>
    <Grid.Resources>
            <Style x:Key="ItemContainerStyle" TargetType="{x:Type telerik:RadTreeViewItem}">
                <Setter Property="IsSelected" Value="{Binding Path=IsSelected, Mode=TwoWay}" />
            </Style>
             
            <HierarchicalDataTemplate
                x:Key="TreeViewItemTemplate"
                ItemsSource="{Binding TreeViewItemChildren}">
                <StackPanel Orientation="Horizontal">
                    <telerik:RadContextMenu.ContextMenu>
                        <telerik:RadContextMenu>
                            <telerik:RadMenuItem Header="Add to bookmarks" />
                        </telerik:RadContextMenu>
                    </telerik:RadContextMenu.ContextMenu>
                    <Image Margin="0,0,2,0" Height="16" Width="16">
                        <Image.Style>
                            <Style TargetType="Image">
                                <Style.Triggers>
                                    <DataTrigger Binding="{Binding IconType}" Value="Folder">
                                        <Setter Property="Source" Value="{StaticResource Folder}"></Setter>
                                    </DataTrigger>
                                    <DataTrigger Binding="{Binding IconType}" Value="MultiPubReport">
                                        <Setter Property="Source" Value="{StaticResource MultiPubReport}"></Setter>
                                    </DataTrigger>
                                    <DataTrigger Binding="{Binding IconType}" Value="SinglePubReport">
                                        <Setter Property="Source" Value="{StaticResource SinglePubReport}"></Setter>
                                    </DataTrigger>
                                    <DataTrigger Binding="{Binding IconType}" Value="Publication">
                                        <Setter Property="Source" Value="{StaticResource Publication}"></Setter>
                                    </DataTrigger>
                                </Style.Triggers>
                            </Style>
                        </Image.Style>
                    </Image>
                    <TextBlock Text="{Binding Name}"></TextBlock>
                </StackPanel>
            </HierarchicalDataTemplate>
             
            <HierarchicalDataTemplate x:Key="TreeViewTemplate">
                <telerik:RadTreeView
                    x:Name="ReportsTreeView"                   
                    ItemsSource="{Binding TreeViewItemChildren}"
                    ItemTemplate="{StaticResource TreeViewItemTemplate}"
                    IsLineEnabled="True"
                    IsDragDropEnabled="True"
                    PreviewDragEnded="ReportsTreeView_PreviewDragEnded"                   
                    SelectionMode="Single"
                    ItemContainerStyle="{StaticResource ItemContainerStyle}">
                </telerik:RadTreeView>
            </HierarchicalDataTemplate>
             
            <HierarchicalDataTemplate
                x:Key="PanelBarItemTemplate"
                ItemsSource="{Binding TreeViewItemViewModels}"
                ItemTemplate="{StaticResource TreeViewTemplate}" >
                <TextBlock Text="{Binding Name}"></TextBlock>
            </HierarchicalDataTemplate>
             
        </Grid.Resources>
         
        <telerik:RadPanelBar
            x:Name="ReportMenu"            
            ExpandMode="Multiple"
            ItemTemplate="{StaticResource PanelBarItemTemplate}"
            VerticalAlignment="Top">
        </telerik:RadPanelBar>
             
    </Grid>
Ryan
Top achievements
Rank 1
 answered on 07 Feb 2011
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
Expander
Slider
TileList
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?