Telerik Forums
UI for WPF Forum
2 answers
96 views
I have a RadComboBox with a list of strings as item. My RadComboBox has IsEditable property to True. I wanted to know how I could do that when the user enters a value in the input field of RadComboBox, it is added to the list of items if it is not already there?
Joël
Top achievements
Rank 2
 answered on 28 Oct 2011
1 answer
111 views
Hi,

I've the same issue described in http://www.telerik.com/community/forums/wpf/gridview/rowdetails-and-text-wrapping.aspx
If I download the sample project attached ticketid-282071-horizontalvirtualizationandwidth.zip it behaves like it should behave but it uses a very old version of telerik. Putting the latest stable and internal telerik assemblies it behaves really strange. The first time when I load the app the text is wrapped, if I resize the window it loses the text wrap and the annoyng horizontal scrollbar appears. Is there any solution to wrap the text correctly in the RowDetailsTemplate. It's a very common scenario and it's seems to be broken in the latest versions.

Thanks for your answer.
Dimitrina
Telerik team
 answered on 28 Oct 2011
5 answers
300 views
Hello,

I need to create a gantt chart.  How do this?

Help please!
Valeri Hristov
Telerik team
 answered on 28 Oct 2011
1 answer
192 views

Hello Team,
 
We are in the process of converting to Telerik 2011 version from the old version. In the previous version our main screen was working fine. Now we are having an issue.

This is the situation.
We have a RadPane with a Item control in it. when we try to resize the RADPane, instead of adjusting the size of the adjcent pane, adjcent pane is getting overlapped on the RADPANE. Because of this overlapping, user is not able to see the scorll bar, which is available in the RADPANE. 

 

How do I solve this issue? I have attached the picture to show the problem.



Code:
  
        <radDock:RadDocking Grid.Row="1" x:Name="mainDockSite" Background="White" Close="mainDockSite_Close" PreviewClose="mainDockSite_PreviewClose">
  
            <radDock:RadSplitContainer radDock:DockingPanel.InitialSize="183,150" MaxWidth="600" Name="LeftContainer" InitialPosition="DockedLeft">
  
                <radDock:RadPaneGroup>
  
                    <radDock:RadPane Header="Navigator" CanUserClose="False" CanUserPin="False" Name="Navigator">
  
                        <DockPanel LastChildFill="True" HorizontalAlignment="Stretch">
  
                            <ItemsControl DockPanel.Dock="Top" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" VerticalContentAlignment="Stretch" Name="PanelBarRegion" cal:RegionManager.RegionName="PanelBarRegion" >
  
                                <ItemsControl.ItemsPanel>
  
                                    <ItemsPanelTemplate>
  
                                        <DockPanel HorizontalAlignment="Stretch" LastChildFill="True"/>
  
                                    </ItemsPanelTemplate>
  
                                </ItemsControl.ItemsPanel>
  
                            </ItemsControl>
  
                        </DockPanel>
  
                    </radDock:RadPane>                    
  
                </radDock:RadPaneGroup>
  
            </radDock:RadSplitContainer>
  
  
Konstantina
Telerik team
 answered on 28 Oct 2011
0 answers
61 views
I want to use unbounded module and want to update particulare cell and dont want to refresh entire grid is it possible??
so the primary point is use the grid without binding to a data object.. use is as unbounded and should have the capability to render the specific row, column...
 Also need to know visible row and column
Nirmal
Top achievements
Rank 1
 asked on 28 Oct 2011
2 answers
189 views
Hello,

Is it possible to bind multiple series to one chart but with different data sources ?

I'm having a case where I need about 6 line series on the chart but they have complitely different data source.

Is there an example ?

I'm planning on using the latest (Q2 2011) WPF version on .NET 4 (evaluating the trial currently). 

Thanks!
Giuseppe
Telerik team
 answered on 28 Oct 2011
5 answers
123 views
Hi,

I need to find RadRichTextBox which contains RadDocument of DataField (custom that I created)
Joël
Top achievements
Rank 2
 answered on 28 Oct 2011
3 answers
183 views
Since updating to the Q2 2011 version just recently, I find that none of my applications that uses the Tererik controls work, nor can I create a new app and add Telerik controls to it.

Here is a simplified Test Case:
I created a fresh WPF application project, opened the MainWindow.xaml, and tried to drag a RadMenu onto it.
It throws up this Error Dialog:

Set property 'System.Windows.ResourceDictionary.Source' threw an
exception.

"Cannot locate resource 'themes/genericmetro.xaml'."

OK

I'd like to know how the Telerik RadControls for WPF installation works, so that I can understand a bit of what's going on. The installation folder, in C:\Program Files (x86)\Telerik, has a folder that would seem to be an older version: RadControls for WPF Q3 2010 SP1\Binaries\WPF\and so on.

Within AppData\Roaming\Telerik, I see an Updates folder with various folders for hotfixes. And the csproj file contains hintPaths that point to these. So, clearly the hintPaths are trying to redirect VS to find the latest versions of our assemblies. Is this the mechanism that is not working here?  Would it help to just un-install Telerik, and reinstall something that is the latest version with the hotfixes already rolled into it?

Thank you for your help,

James W. Hurst


Platform:

IDE:              Visual Studio 2010 Ult SP1
Operating System: Windows 7 Ult x64
Telerik Product:  RadControls for WPF, v.2011.2.712.40
Other Products:   JetBrains ReSharper
Konstantina
Telerik team
 answered on 28 Oct 2011
6 answers
328 views
Hello,
I'm having a problem with the display of error messages on validation on a RadGridView.  I use property level validation implementing the IDataErrorInfo interface on my entity classes and the RadGridView correctly reconnizes when there are errors in the entity properties, however it rendered the errors that are present at databinding and the errors that occur due to user editing quite differently.

When the RadGridView is populated with data that already fails the validation rules at the time the data is binded, the grid displays what I consider a nicer looking error template that contains a red triangle in the corner of the cell and highlights the cell in red.  However, when the user edits a cell/property value to a value that is invalid according to the property rules they see another style of error notification that is a simple red box around the cell without "niceness" of the other error.  See attached files for the comparison.

Is there a way to get both types of errors to use the "nicer" error notification template?  I can't seem to find out how to do that.

#region IDataErrorInfo Members
public string Error
{
    get
    {
        if (TestProperty == "J")
        {
            return "Please enter valid data in this row!";
        }
        return string.Empty;
    }
}
public string this[string columnName]
{
    get
    {
         string result = null;
            if (columnName == "TestProperty")
            {
                if (TestProperty == "J")
                {
                    return "Error in something.";
                }
             }
        return result;
    }
}
Vlad
Telerik team
 answered on 28 Oct 2011
2 answers
108 views
If I have a Day View which has an orientation of horizontal, how can I reduce the height of each resource row?

I can find a way of reducing the appointment height but cannot find a way of reducing the resource row height.

Would appreciate any help you can give me.
Steve
Stephen
Top achievements
Rank 1
 answered on 27 Oct 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
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?