Telerik Forums
UI for WPF Forum
1 answer
194 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
63 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
194 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
125 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
186 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
329 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
109 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
2 answers
408 views
I've removed the row header by setting the RowIndicatorVisibility="Collapsed" property on my RadGridView. I notice that there is a gap between the gridview border and the first column cells. There also seems to be some sort of gradient effect to the left of the first columns cells. How can I remove the pixel-gap between the border of the grid and the first columns cells? I would also like to know if its possible to remove the aforementioned gradient effect.

My grid is styled with the office blue theme (StyleManager.Theme="Office_Blue")
Eric
Top achievements
Rank 1
 answered on 27 Oct 2011
0 answers
48 views
Hello,

I recently upgraded our distribution to Q2 2011 and everything works great except for dragging and dropping. I currently have a scenario where I am dragging from a ListBox to a RadChart and it still "works" but doesn't show the drag que arrow anymore. I added the following line to our code:

RadDragAndDropManager.ExecutionMode = DragExecutionMode.Legacy;

This had no discernable effect. Also we now get an intermitten crash:

The specified Visual and this Visual do not share a common ancestor, so there is no valid transformation between the two Visuals.

This error occurs while dropping onto the RadChart. We have been using this code since mid-2010 and has survived at least 3 upgrades so the problem (since it seems Telerik has extensively changed the RadDragAndDropManager and divided it into 2 parts) may lay in the fact that we need to upgrade the drag and drop code. The problem is I have no idea what to change since the documentation seems to be almost verbatim what the last documentation set had. Any help in resolving this would definitely be appreciated.

Edit: I was just testing this and I remembered that I should say that the ListBox is in a RadDock and when the tab is pinned it works fine and doesn't give the visuals error. If it is unpinned it crashes. Once again, it worked fine before the Q2 upgrade.

Thanks,
Sean Galland
Sean
Top achievements
Rank 1
 asked on 27 Oct 2011
2 answers
114 views
In the RadGrid how can I determine if the user changed the value of the data in a grid cell? I'm using WPPF and MVVM.
Kevin Marois
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
Expander
Slider
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
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
VirtualKeyboard
HighlightTextBlock
Security
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?