Telerik Forums
UI for WPF Forum
1 answer
251 views

I am developing an application and I used LayoutControl , I noticed that the window persist in memory when I close it  , even if I use GC.Collect() to wake up garbage collector, there is a memory leaks concerning LayoutControl.  

Otherwise, if I put any other telerik component like RadGridView or RadMenu the window object is removed from the memory after closing .

Please help because I use  LayoutControl in 120 interfaces.

I use ANTS Memory Profiler 8 , Telerik UI for WPF R3 2017 SP1 , win7 sp1 x64 , visual studio 2013.

Demo application : https://drive.google.com/open?id=1jzyLK9w6YMURHIIF4dkDUxUbzJrBWWPU

Petar Mladenov
Telerik team
 answered on 19 Dec 2017
2 answers
244 views
Hello, is it possible to force PDfViwer select only the whole words, but not the parts of them ? Thanks in advance
FirstName
Top achievements
Rank 1
 answered on 19 Dec 2017
1 answer
227 views

Hello

I need change some PropertyDefinition's IsEnabled on run time,my solution is change PropertyDefinition's IsReadonly
public virtual void SetEnabled() 
{
            var squidProperties = this.FindChildByType<RadPropertyGrid>() as RadPropertyGrid;
            if (squidProperties == null)
                return;
            foreach (var item in squidProperties.PropertyDefinitions)
            {
                item.IsReadOnly = !_enable;
                if (item.HasNestedProperties) 
                {
                    foreach (var subItem in item.NestedProperties) 
                    {
                        subItem.IsReadOnly = !_enable;
                    }
                }
            }
  }

when the PropertyDefinition has  EditorTemplate, when  the EditorTemplate is single control  as the following code  it is works right

<telerik:PropertyDefinition.EditorTemplate>
              <DataTemplate>    
                         <telerik:RadWatermarkTextBox 
                                                             IsReadOnly="{Binding IsReadOnly, RelativeSource={RelativeSource AncestorType=telerik:PropertyGridField}}"
                                                             Text="{Binding Filter}" />                                
                 </DataTemplate>
</telerik:PropertyDefinition.EditorTemplate>

but  when the EditorTemplate is nested controls  as the following code,  it is works wrong

   <telerik:PropertyDefinition.EditorTemplate>
                        <DataTemplate>
                            <Grid>
                                <Grid.ColumnDefinitions>
                                    <ColumnDefinition Width="*" />
                                    <ColumnDefinition Width="auto" />
                                </Grid.ColumnDefinitions>
                                <telerik:RadWatermarkTextBox Grid.Column="0"
                                                             IsReadOnly="{Binding IsReadOnly, RelativeSource={RelativeSource AncestorType=telerik:PropertyGridField}}"
                                                             Text="{Binding Filter}" />
                                <telerik:RadButton  />
                            </Grid>
                        </DataTemplate>
</telerik:PropertyDefinition.EditorTemplate>

the RadWatermarkTextBox status is not readonly, when set the PropertyDefinition isreadonly true 

what is the reason for this?

Dilyan Traykov
Telerik team
 answered on 19 Dec 2017
1 answer
407 views
I have a datatble with 2 columns:
1. Name
2. IsEnabled
I want to bind each toggle button's IsEnabled to DataTable
for example if a toggle button's content is "Test" and there is row in
datatable with {Test,True}, this radio button's IsEnabled marks as True.
Martin Ivanov
Telerik team
 answered on 19 Dec 2017
8 answers
552 views
Does the WaterMarkTextBox work for passwords too? If so, do you have any examples?

For example, a standard authentication dialog may have user name and password prompt. We would like to be able to use a watermark text box both for fields, so that the password characters are not visible when typing.
Kalin
Telerik team
 answered on 18 Dec 2017
1 answer
118 views

Hello,

I have been digging through the documentation and I am unable to find any information on the ability to include the header/row values when copying the cells from a pivot grid.  The actual values copy in to excel just fine, but I would like to include the header/row values.

Would someone be able to point me in the right direction?  Thank you.

Dinko | Tech Support Engineer
Telerik team
 answered on 18 Dec 2017
2 answers
1.3K+ views

Hey guys,

since i dont get it to work since 3 hours now i registered here in the hope you have a solution.

I have a GridView in my View:

<tel:RadGridView ItemsSource="{Binding CompareTablesResultView, Mode=OneWay}" ColumnWidth="Auto" x:Name="grdComparedData"
                         IsFilteringAllowed="False" CanUserReorderColumns="False" CanUserFreezeColumns="False"
                         CanUserSortColumns="False" CanUserDeleteRows="False" CanUserInsertRows="False" ShowGroupPanel="False"
                         tel:StyleManager.Theme="Windows7" DataLoaded="grdComparedData_DataLoaded">
        </tel:RadGridView>
        <tel:RadDataPager x:Name="DataPager" Source="{Binding Items, ElementName=grdComparedData}"
                          PageSize="30"  Grid.Row="1" tel:StyleManager.Theme="Windows7"/>

The GridView Itemssource is bound to a DataView Property in my ViewModel.

The DataView is simply the .DefaultView of the Datatable i want to display.

With the data in my datatable i did some validation. In my validation i receive information which cells are invalid (rownumber and columnnumber/columnname).

Now my target is to set the style for the cells that are invalid (foreground color to red). But i cant get it working to get the GridViewCell based on the infos if have.

In some forum posts i saw code like MyGridView.Rows(index).Cells(anotherIndex) but the RadGridView dont have an accessable Row property for me.

I also tried some other things to get the cell like to get access the .Items Property or some attempts with the .ChildrenOfType<> method but nothing worked for me.

Is there any way to set the Cell-Style for a specific cell when bound to a DataTable or DataView? I cant use a cellstyle selector cause its not the value of the cell itself that is invalid, its only invalid in the context of row and column. The same value can be valid in another row or in another column.

You guys have any ideas?

Could i mark the DataView Cell in any way that i could react from a cellstyle selector on it or something like that?

Stefan
Top achievements
Rank 1
 answered on 18 Dec 2017
3 answers
185 views
I would like to be able to create a bar chart dynamically and assign the color of the series based on the selected slice of the pie chart.  I am using the ChartSelectionBehavior_SelectionChanged event but I am not sure where to get the color of the pie slice from the ChartSelectionChangedEventArgs provided by the event.  I am using the Windows8 palette for my pie chart.
Martin Ivanov
Telerik team
 answered on 18 Dec 2017
14 answers
659 views
When I drag the scrollbar in a RadGridView, OnDragInitialize is called. I can't find anything in the DragInitializeEvenArgs that could tell me whether the user is dragging the rows (in which case I am interested) or dragging the scrollbar (in which I want to ignore it). Ditto for the sender (the RadGridView). Its IsScrolling property is set to false whether I am scrolling or not.

How can I just do dragging when the user has chosen rows, and not other controls such as the scrollbar or vertical frozen column separator.
Jay
Top achievements
Rank 1
 answered on 15 Dec 2017
2 answers
263 views

Sirs,

I'm using RadVirtualGrid with a Custom DataProvider and I would like to format its columns where some columns would fit their width to their content, others to their cells' content, some columns would have their cells aligned to left, others to right, and so on.

I mean I want to apply a different style to each column in my RadVirtualGrid, however I don't know how to handle these styles.

Thanks in advance,

Vladimir Stoyanov
Telerik team
 answered on 15 Dec 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?