Telerik Forums
UI for WPF Forum
1 answer
141 views
Hi,

There are certain meetings (Appointments) that has fixed timing, i.e. they need to be held at that time only. There are other meetings on the same day which may be held on any given time in a day.

I need to show the meetings with fixed timings first and then the meetings with no timings. I need to show them one below other (Not side to side). Even if two meetings have same timings, they need to be shown one below the other.

Let me know if this is possible or not.
Konstantina
Telerik team
 answered on 30 Jan 2013
5 answers
236 views
If I open any DOCX file, I get an error saying the file is locked and cannot be opened.  This is definitely not true.

I then pulled Telerik source code and ran.  I found that the error is in the Telerik.Windows.Documents.dll file.  The error is in Paragraph.cs.  The error is at line 409.  As you can see by the photo, the Levels only contains one item, yet it's trying to reference Item[1] which would be impossible.  Should be Item[0].

I can attach a DOCX file if no one else has this issue.
Mihail
Telerik team
 answered on 30 Jan 2013
3 answers
124 views
Hi,

I want to design a grid which will display the values as in the attached image. Column headers and row headers have to be populated dynamically, Since i am following MVVM-Wpf pattern i will bind it through my observsable collection. How can i acheive this?
Subash
Top achievements
Rank 1
 answered on 30 Jan 2013
0 answers
108 views
Vertical orientation blocks both vertical and horizontal scrolling; None blocks only horizontal scrolling for some reason. Bug?
Example
Maxim
Top achievements
Rank 1
 asked on 30 Jan 2013
1 answer
156 views
I'm using RadWindow as ModalDialog in a WPF application. The content of the window expands with Expander.
When I set RadWindow property TextOptions.TextFormattingMode="Display", window stops to change its size automatically and cut my content.

Without setting this property, auto resizing works fine.

Example for reproducing a bug:
<telerik:RadWindow x:Class="TelerikSamples.RadWindowTest"
                   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                   xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
                   TextOptions.TextFormattingMode="Display">
    <Grid>
        <Expander Header="Expand me">
            <StackPanel>
                <TextBlock Text="Text1"/>
                <TextBlock Text="Text2"/>
                <TextBlock Text="Text3"/>
            </StackPanel>
        </Expander>
    </Grid>
</telerik:RadWindow>

Vladi
Telerik team
 answered on 30 Jan 2013
3 answers
149 views
Hi

1) I have a requirement to display numeric data in the grid (this must be read-only), and in the first cell of each column I need to display a "unit of measure" (e.g. "cm", mm", "m", etc). Additionally, when the user clicks on this cell it should display a combobox, allowing the user to change that column's measurement unit (selecting an item will involve recalculating the data that is bound to the grid). So my question is - is it possible to mix content in a column like this, i.e. numeric data in some cells, and a combobox in another cell? Can you suggest a way to achieve this?

2) I want the ability to right-click a cell and bring up some kind of popup or panel containing a simple form (various controls to manipulate that cell's contents). I've found how to select the cell that has been right-clicked, but is there a way that I can position the popup/panel over that cell? Or am I best just using a WPF Popup control with Placement="MousePoint"?

3) In some cells we need to provide a visual indication of the validity of the data, but rather than use colours to do this, we would like to display an image/icon alongside the numeric value. Is this possible?

Thanks in advance
Andrew
Pavel Pavlov
Telerik team
 answered on 30 Jan 2013
5 answers
149 views
Hi all, 
I've problems to connect to Adomd OLAP server since version 1307 (also 1314 of yesterday). 
Have you perhaps changed something in connection parameters and methods?

I configure the provider by this way:

Session.OlapProvider = new AdomdDataProvider
{
    ConnectionSettings = new AdomdConnectionSettings()
    {
        ConnectionString = Settings.Default.OlapConnString,
        Database = Settings.Default.OlapDatabase,
        Cube = Settings.Default.OlapCube
    }
};

...then the problem is on following line of my code:

this.pivot.DataProvider = Session.OlapProvider;

the error is System.NullReferenceException but I can't know where is in PivotGrid sourcecode.

Before 1307 internal release all works fine...
Please, can you help me?

EDIT: Sorry, I have specified the wrong title that is ADOMD provider connection problems: if you can, change it, thanks!

Many thanks!
Davide
purdav
Top achievements
Rank 1
 answered on 30 Jan 2013
1 answer
203 views
When using ExportToImage (with the WPF Q3 2012 SP1 version) on a diagram with some shapes selected, the resultant image has the selected shape connectors rendered. See attached screen capture as an example. 

I have tried to DeselectAll(), setting IsConnectorsManipulationEnabled false and setting  IsManipulationAdornerVisible false just before exporting but none had any effect.

So is there a way of exporting the shapes without rendering the connectors of selected shapes ?

Many Thanks,








 
Zarko
Telerik team
 answered on 30 Jan 2013
5 answers
461 views
Hi,

When I tried to copy mulitple rows and cells from RadGridView to MS Excel I found out that the line breaks in cell seemed removed. All statements in the cell present in one single line after pasting into MS Excel cell. Is there a solution to reserve the line breaks in the cell after copy/paste ?

BTW Last time I got confirmation that the copy of RadGridView will only contains plain text and the font size and font family will not be copied at all. Is that supported in latest version ?

Thanks,
Alex
Dimitrina
Telerik team
 answered on 30 Jan 2013
11 answers
583 views
Hello,

I am using WPF 4.0 and Prism 4.0 with MEF and the latest Radcontrols for WPF. I have 15 core modules containing mostly RadGridViews and RadCharts. These 15 modules are implemented as prism views in a single Window. All modules stay loaded as the application is expected to be long running. Three of the views toggle to a secondary view because I ran out of real estate on the screen. 

The application is a read only dashboard so I am using MVVM without any command bindings. Viewmodels contain an ObservableCollection of the data class and bind to the Itemsource of the control. All Telerick controls are updating as the data source updates and seem to be operating fine.

However, I am experiencing a heavy memory leak that is mostly in Telerick code.

My profiler lists these classes as the highest offenders:
Telerick.Windows.Data.QueryableCollectionView
Telerick.Windows.Data.CompositeFilterDescriptorCollection
Telerick.Windows.Data.SelectDescriptorCollection
Telerick.Windows.Data.CompositeFilterDescriptor

Before each update I call Clear() on the ObservableCollection in the Viewmodel but this doesn't seem to help. I derive the Viewmodel from INotifyPropertychanged but it doesn't help and is not needed for update since the ObservableCollection takes care of it. If I raise the property changed event the leak only increases.
 
I have traced references in my profiler back to the shell and the prism region which live for the lifetime of the application.

Has anyone experienced this behavior? Are Telerick controls known to leak memory in Prism applications? This must be common scenario for Telerick controls althought I have found little on the web in regards to a Prism memory leak so thought I would post here.

Thanks in advance for any help.
 Victor
Mark
Top achievements
Rank 1
 answered on 29 Jan 2013
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?