Telerik Forums
UI for WPF Forum
2 answers
152 views

We use the following code to put a filter on tree items which work great intially.

snip .....

TreeListView.FilterDescriptors.SuspendNotifications();
ClearFilters();

ApplyFilter(Reflector.GetProperty<ProjectReleaseLineViewModel>((line) => line.HasError).Name, true, FilterOperator.IsEqualTo);

snip ......

 

private void ClearFilters()
{
           foreach (var column in TreeListView.Columns.OfType<Telerik.Windows.Controls.GridViewBoundColumnBase>())
           {
                var filterControl = column.FilteringControl as ColumnFilterControl;
if (filterControl != null)
{
filterControl.Reset(column);
}
}
}

private void ApplyFilter(string member, object value, FilterOperator @operator = FilterOperator.IsEqualTo)
{
var filter = new CompositeFilterDescriptor();
filter.FilterDescriptors.Add(new FilterDescriptor(member, @operator, value));
var colum = TreeListView.Columns.OfType<GridViewBoundColumnBase>().Skip(2).First();
colum.DataControl.FilterDescriptors.Add(filter);
}

When performing this action the tree explands showing the lines which have errors.

The strange behaviour happens after that through the following actions.

- The use manually collapses the expanded items al the way to level zero

- Then the filter is cleared through the following code

 

 

Johan
Top achievements
Rank 1
 answered on 25 Apr 2017
1 answer
678 views

How to implement Telerik checkbox in WPF to trigger functions while still remembering original state?

I have a checkbox that when checked should exclude an item in a RadGridView while still remembering the state (of the item being included), so if (or when) a user unchecks the checkbox, the item is included back in the list within the RadGridView. Essentially setting the original data back when unchecked to revert back to original data.

Stefan
Telerik team
 answered on 24 Apr 2017
1 answer
269 views

Hi!

When I create a ConditionalDataTemplateSelector to use as CellTemplateSelector in a GridView, I have to specify the name of the field in my DataTemplateRule like this:

<telerik:ConditionalDataTemplateSelector x:Key="PriceSelectedSelector">
        <telerik:DataTemplateRule Condition="IsSelected = False OR IsSelected = null" Template="t1" />
        <telerik:DataTemplateRule Condition="IsSelected = True" Template="t2" />
</telerik:ConditionalDataTemplateSelector>

But if I have a lot of columns that are just true/false I have to create a new ConditionalTemplateSelector for each and every column. Is there a way to build this in a more general way like "If the value in this cell is true, take template t1" so I could use my ConditionalTemplateSelector on different columns regardless of the name of the field?

Regards
Heiko

Stefan Nenchev
Telerik team
 answered on 24 Apr 2017
1 answer
143 views

Dear Telerik Team,

I've been playing with TileList for a while and it seems like the items virtualization does not work despite it is using an items panel that *should* allow virtualization. the documentation does not state whether TileList does support virtualization (it does for few other controls).

Cheers, Greg

Stefan Nenchev
Telerik team
 answered on 24 Apr 2017
1 answer
146 views
Hello. I use RadDataForm component in my DataTemplate and create custom DataFormCommandProvider for it, but it doesn't work.
Dilyan Traykov
Telerik team
 answered on 21 Apr 2017
8 answers
370 views
I have a grid which displays a listing of records on a TabControl.  A second tab displays the detail for the selected record on the grid.  This all works fine except when I go back to the grid list tab, the grid is blank.  The data is there because if I click a different record and move to the detail tab it displays that corresponding data.  Also, if I page down and then back up the grid will redisplay the data correctly.  So it's definitely just a display issue.  Any ideas?

Thanks,
-Sid Meyers.
Dilyan Traykov
Telerik team
 answered on 21 Apr 2017
8 answers
582 views
Hi There,

I have a problem with RadPanes isHidden property, i want to set IsHidden by using a binding, but when i do this it is not working, but if i set the IsHidden="True" at XAML then its working properly, can you please guide me in this case ?

Thanks in advance,
Srinivas.
AEDT developer
Top achievements
Rank 1
 answered on 21 Apr 2017
2 answers
703 views

Hi Team,

I have used the RadSplitButton to show the drop down along with button. But the drop down popup is opened outside window, please share any idea to load the popup only within window. Please refer the below code 

 

<telerik:RadSplitButton Margin="20,152,0,0"
                        Foreground="#8F8F8F"
                        HorizontalAlignment="Left"
                        VerticalAlignment="Top"
                                Content="DROP DOWN">
    <telerik:RadSplitButton.DropDownContent>
        <StackPanel Orientation="Vertical">
            <telerik:RadListBox ItemsSource="{Binding AddressBooks}"
                                        BorderThickness="0">
                <telerik:RadListBoxItem>AAA AAA AAA AAA</telerik:RadListBoxItem>
                <telerik:RadListBoxItem>BBB BBB BBB BBB</telerik:RadListBoxItem>
                <telerik:RadListBoxItem>CCC CCC CCC CCCC CCC</telerik:RadListBoxItem>
            </telerik:RadListBox>
            <Button Content="ADD NEW"
                            BorderThickness="0,1,0,0"/>
        </StackPanel>
    </telerik:RadSplitButton.DropDownContent>
</telerik:RadSplitButton>

 

Please refer the attached image to know more about the issue. And I am using Windows 8.1 OS.

 

Regards,

Antony Raj

 

Antony
Top achievements
Rank 1
 answered on 21 Apr 2017
2 answers
288 views

Hi. Im trying to create a DataFormDataField for comments. The requirements are that the textbox needs to accept return, wrap and always show 3 lines no matter the ammount of text.

 

my first attempt i came up with the following

 

                                <telerik:DataFormDataField x:Name="Comm"
                                                           Label="Comments"
                                                           LabelPosition="Above"
                                                           Width="355"
                                                           Canvas.Left="10"
                                                           Canvas.Top="61">
                                    <TextBox Height="50"
                                             AcceptsReturn="True"
                                             TextWrapping="Wrap"
                                             Text="{Binding BIGCOMMENTS, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
                                             IsReadOnly="{Binding IsReadOnly, ElementName=Comm, Mode=OneWay}"
                                             VerticalContentAlignment="Top"
                                             TabIndex="18" />
                                </telerik:DataFormDataField>

 

works nice until you need to resize, it gets a bit wonky. second attempt was to modify the template in blend.

 

  <ControlTemplate x:Key="WBDataFormMultiLineDataField"
                     TargetType="{x:Type telerik:DataFormDataField}">
        <Border x:Name="PART_RootElement"
                BorderBrush="{TemplateBinding BorderBrush}"
                BorderThickness="{TemplateBinding BorderThickness}"
                Background="{TemplateBinding Background}"
                CornerRadius="{DynamicResource {x:Static telerik:Office2016ResourceKey.CornerRadius}}"
                UseLayoutRounding="True">
            <Grid x:Name="PART_DataFormDataFieldGrid"
                  Margin="{TemplateBinding Padding}">
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="*" />
                    <ColumnDefinition Width="2*" />
                    <ColumnDefinition Width="24" />
                </Grid.ColumnDefinitions>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="*" />
                </Grid.RowDefinitions>
                <ContentControl x:Name="PART_Label"
                                ContentTemplate="{TemplateBinding LabelTemplate}"
                                Content="{TemplateBinding Label}"
                                Foreground="{TemplateBinding Foreground}"
                                HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                                IsTabStop="False"
                                Margin="4,0"
                                VerticalAlignment="Center"
                                VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}" />
                <TextBox x:Name="PART_ContentPresenter"
                         Grid.Column="1"
                         HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
                         Grid.Row="1"
                         Text="{Binding DataMemberBinding, RelativeSource={RelativeSource TemplatedParent}}"
                         VerticalAlignment="Stretch"
                         AcceptsReturn="True"
                         TextWrapping="Wrap"
                         VerticalContentAlignment="Top"
                         TabIndex="18" />

                <Grid x:Name="DescriptionIcon"
                      Background="Transparent"
                      Grid.Column="2"
                      HorizontalAlignment="Center"
                      Margin="4,0,0,0"
                      Grid.Row="1"
                      VerticalAlignment="Center">
                    <Grid.ToolTip>
                        <ToolTip Content="{TemplateBinding Description}" />
                    </Grid.ToolTip>
                    <Grid.Visibility>
                        <Binding Path="Description"
                                 RelativeSource="{RelativeSource TemplatedParent}">
                            <Binding.Converter>
                                <dataForm:DescriptionVisibilityConverter />
                            </Binding.Converter>
                        </Binding>
                    </Grid.Visibility>
                    <TextBlock Foreground="{DynamicResource {x:Static telerik:Office2016ResourceKey.IconBrush}}"
                               FontWeight="Normal"
                               FontStyle="Normal"
                               FontSize="16"
                               FontFamily="/Telerik.Windows.Controls;component/Themes/Fonts/TelerikWebUI.ttf#TelerikWebUI"
                               HorizontalAlignment="Center"
                               Margin="1,0,0,0"
                               Text="&#xE402;"
                               VerticalAlignment="Center"><Run Text="&#xE402;" /></TextBlock>
                </Grid>
            </Grid>
        </Border>
    </ControlTemplate>

 

I basically replaced the content presenter (which was showing a text box) with an acutal textbox. this works much better in terms of resizing, however i lose functionality for 'DataMemberBinding', which i need.

 

Any ideas to an ideal solution?

Mike
Top achievements
Rank 1
 answered on 20 Apr 2017
1 answer
214 views
Hi,
I add a column to my grid dynamically:

FrameworkElementFactory fef = null;
var template = new DataTemplate();
fef = new FrameworkElementFactory(typeof(Button));
fef.AddHandler(Button.PreviewMouseLeftButtonUpEvent, new MouseButtonEventHandler(MainWindow_MouseLeftButtonUp), true);
template.VisualTree = fef;
var column = new GridViewDataColumn();
column.CellTemplate = template;
column.CellTemplate.Seal();
grid.Columns.Add(column);


private void MainWindow_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
 //...
}

but when I clicked the Button, no event raised.
how can I handle the Event?
Stefan Nenchev
Telerik team
 answered on 20 Apr 2017
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
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
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?