Telerik Forums
UI for WPF Forum
3 answers
135 views
Hi guys,

I see the Silverlight version supports this functionality, the user can reorder tabs by dragging.  When do you plan on porting this over to WPF?
Nikolay
Telerik team
 answered on 01 Feb 2011
1 answer
222 views
Hi,

I am using a RadGridView and a DataPager.
My requirement is that i need to customize the DataPager to include a RadComboBox to update the page size of the Pager.

Please guide me how I can put a combo box inside the datapager template and on change of its value how i can update the page size of data pager.

Thanks.
Veselin Vasilev
Telerik team
 answered on 01 Feb 2011
1 answer
132 views
I have the following control defined in a simple Grid control:

<telerik:RadNumericUpDown x:Name="TotalTimeSpent" Grid.Column="1" Grid.Row="1" Focusable="True" LargeChange="1.0" SmallChange="0.1" Value="0.1" Maximum="24.0" Minimum="0.0" TabIndex="1" UpdateValueEvent="PropertyChanged" ValueFormat="Numeric" />

Note that I have specified a TabIndex of 1.  However when I tab through the UIElemets in the Window the RadNumericUpDown is always last.  I have discovered that the template TextBox has a TabIndex of 2147483647 causing this behavior.  As a work around I do this: 

TextBox totalTimeSpent = TotallTimeSpent.FindChildByType<TextBox>() as TextBox;
 
if (totalTimeSpent != null)
{
    totalTimeSpent .TabIndex = TotalTimeSpent .TabIndex;
}

in the Loaded event.  The result is as if the TabIndex was propagated to the templated TextBox.

 
Konstantina
Telerik team
 answered on 01 Feb 2011
1 answer
85 views
 My requirement is as follows:

I have a table of similar format -

<Id> <Name>

where I want to have the fields under 'Id' column as read-only, while those under 'Name' would be editable. How to achieve this?
Milan
Telerik team
 answered on 01 Feb 2011
1 answer
106 views
I am using the timeline view. when the appointemt start is less then the first thay of the view, the rendered appointmenitem as wrong end day

For exemple, I add a appointment with start = 24/01/2011 and end = 29/01/2011. when I set the the scheduelerview in the day 27/01/2011 I will see one appoint that start = 27/01/2011 and end = 31/01/2011. I think this is not right...

Hristo
Telerik team
 answered on 01 Feb 2011
1 answer
128 views
Both the RadScheduler and RadScheduleView controls are included in the installation package; but, I don't see any mention of the RadScheduleView in the "RadControls For WPF Documentation." Is that new documentation available now or will it be available soon? Thanks ... George
Hristo
Telerik team
 answered on 01 Feb 2011
1 answer
129 views
Hi,

How do i make the cell readonly while in edit mode but not when the user inserts a new row?

thanks
Maya
Telerik team
 answered on 01 Feb 2011
2 answers
196 views
Hello,

I have a requirement where I want to highlight a for x seconds when the object bound to a row is in certain state.I am using a datatrigger together with a coloranimation for this purpose. When the condition is met, I trigger the storyboard action.  Below is the xaml. The problem I am facing is when I scroll the animation seems to be carrying to other rows which do not satisfy the condition. I have enabled row virtualization. This seems something to do with recycling the row containers ? Any help is greatly appreciated.

 <Style x:Key="test" TargetType="{x:Type telerikGridView:GridViewRow}">
            <Setter Property="Background" Value="White"/>
            <Style.Triggers>
                <DataTrigger Value="true">
                    <DataTrigger.Binding>
                        <MultiBinding Mode="OneWay" Converter="{StaticResource backgroundConverter}">
                            <Binding Path="FirstName"/>
                            <Binding Path="LastName"/>
                        </MultiBinding>
                    </DataTrigger.Binding>
                    <DataTrigger.EnterActions>
                        <BeginStoryboard>
                            <Storyboard>
                                <ColorAnimationUsingKeyFrames AutoReverse="True"  BeginTime="00:00:00" Duration="00:00:5"                                                               Storyboard.TargetProperty="(Control.Background).(SolidColorBrush.Color)">
                                    <LinearColorKeyFrame Value="Green" KeyTime="00:00:.5" />
                                </ColorAnimationUsingKeyFrames>
                            </Storyboard>
                        </BeginStoryboard>
                    </DataTrigger.EnterActions>
                </DataTrigger>
            </Style.Triggers>
        </Style>

Bhargava
Top achievements
Rank 1
 answered on 31 Jan 2011
2 answers
98 views
I am dragging/dropping from RadTreeView to Listbox.

My problem is that even when DragStatus is Impossible, the TreeViewItem is removed.

Any ideas?
Ryan
Top achievements
Rank 1
 answered on 31 Jan 2011
8 answers
1.0K+ views
Hi!

I'm running in a strange exception:

I've created a menu with 4 entry, each are 16x16px large.

But, when i launch the application, I get this:
http://dl.dropbox.com/u/368403/radmenuitemImage.png

Some icons are magnified.

My icons declaration:
<telerik:RadContextMenu.ContextMenu>
    <telerik:RadContextMenu IsEnabled="{Binding MainTree.CurrentItem.IsFolder, Mode=OneWay}" >
        <telerik:RadMenuItem Header="Create new folder" Icon="/GuiResources;component/ActionsIcons/newFolder.png"/>
        <telerik:RadMenuItem Header="Create new file"  Icon="/GuiResources;component/ActionsIcons/newFile.png" />
        <telerik:RadMenuItem Header="Add a new version of this file" Icon="/GuiResources;component/ActionsIcons/newFolder.png" />
        <telerik:RadMenuItem Header="Delete" Icon="/GuiResources;component/ActionsIcons/delete.png" />
    </telerik:RadContextMenu>
</telerik:RadContextMenu.ContextMenu>

Icons are here: http://dl.dropbox.com/u/368403/icons.zip

So:
-why does it happen?
-How to solve it?

Thank you!

Edit: It seems it was my icons that were having a problem
Stefan
Top achievements
Rank 1
 answered on 31 Jan 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
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
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
PasswordBox
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
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?