Telerik Forums
UI for WPF Forum
3 answers
152 views
Simple question... is it possible to have a RadPanelBar's contents be dockable? For example, I want to be able to drag my RadPanelBarItem out of the RadPanelBar and then back in again. While I know I can dock items inside a RadPanelBarItem, I would love to be able to dock RadPanelBarItems themselves inside the RadPanelBar.

I thought I could do something like setting the ItemsPanelTemplate but I've exhausted all options there.

If the answer is no, are there any suggested methods to having the functionality of a RadPanel (specifically multiple expandedmode) but allow the beautiful docking functionality that the other Telerik controls give you?
Tina Stancheva
Telerik team
 answered on 07 Feb 2012
1 answer
120 views
Afternoon,
I notice the PDF Viewer is no longer on your wpf roadmap, has this been delayed then from the febuary release ?
Thanks
Tom.
Mike
Telerik team
 answered on 07 Feb 2012
1 answer
138 views

Hi

I have seen your example grid animation at http://blogs.telerik.com/pavelpavlov/posts/10-05-20/displaying-live-streaming-data-with-radgridview-for-silverlight-and-wpf.aspx id it possible to achieve this from code to target user defined values. For example I have a grid that is updated on a timer event and would like to animate selected cells after this event occurs for different target columns where cells fall into a value range. A small example of targetting a grid cell  would be appreciated.

Regards

Joe

Vlad
Telerik team
 answered on 07 Feb 2012
0 answers
109 views
I am encountering following issues with RADGridView. Please help me to resolve them.

1. How to remove row header?
2. How to avoid default selection of first row in a grid?

Please find attachment for your reference.
Madhan
Top achievements
Rank 1
 asked on 07 Feb 2012
1 answer
157 views
Hi,

I implement the radclock control like the examples. It works. But i need to bind the ObservableCollection<timespan> to itemssource instead to set it in the constructor. The binding do not work.

Here my binding.
<telerik:RadClock x:Name="clock" Width="260" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="3" Grid.Row="0" Grid.RowSpan="6"
                          ItemsSource="{Binding Times}"/>
       

         public ObservableCollection<TimeSpan> Times
        {
            get { return LoadDataObjects(); }
        }

 

What is wrong?

Thanks
Annett

Ivo
Telerik team
 answered on 07 Feb 2012
1 answer
163 views
Hi, I'm not sure if I am on track here, I hope there is an easier solution to this.
But I am trying to create an grid with footer witch has three editable rows (see attachment). My code is the following ->

private GridViewDataColumn bindColumn(string bindText, string headerAndTag, string cellText1, string cellText2, string cellText3)
        {
            GridViewFooterCell cell = new GridViewFooterCell();
            StackPanel sp = new StackPanel();
            TextBox cell1 = new TextBox() { Text = cellText1 };
            TextBox cell2 = new TextBox() { Text = cellText2 };
            TextBox cell3 = new TextBox() { Text = cellText3 };
 
            sp.Children.Add(cell1);
            sp.Children.Add(cell2);
            sp.Children.Add(cell3);
 
            GridViewDataColumn col  = new GridViewDataColumn();
            col.HeaderTextAlignment = TextAlignment.Right;
            col.DataFormatString    = "{0:N0}";
            col.TextAlignment       = TextAlignment.Right;
            col.Header              = headerAndTag;
            col.Tag                 = headerAndTag;
            col.DataMemberBinding   = new Binding(bindText) { Mode = BindingMode.TwoWay };
 
            col.Footer = sp;
            return col;
        }

My question is: Is there a better way to achieve this ? Should I perhaps use other things than TextBox ?
Can someone give me some tips.

Thank you.
Kristján
Vlad
Telerik team
 answered on 07 Feb 2012
1 answer
173 views
I am working on a program with a lot of difficult users (who doesn't ;-)

In my program, there is a worklist with a column containing next contact date (time is optional). This is a RadDateTimePicker.

Some of my users wants to be able to input time and others wants to be able to input only dates. The latter group of users complains that the time part ('00:00') makes i harder to read the date.

Is there a way to make RadDateTimePicker show only the date part, if no time-part has been entered?

I work in a multi-cultural environment, I cannot use stuff like "{0:HH:mm}, but I do use stuff like {0:d}

Thanks
Yana
Telerik team
 answered on 07 Feb 2012
3 answers
315 views
Hi,
I am new to the RadRadialGauge,

I tried to create a Radial Gauge like explain in the site.

i have added the two dll:
  • Telerik.Windows.Controls.DataVisualization.dll
  • Telerik.Windows.Controls.dll
and the namespace:
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"

my xaml look like this:
<Window x:Class="Guage.MainWindow"
        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"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <telerik:RadRadialGauge x:Name="radialGauge"
                        Width="300"
                        Height="300">
        </telerik:RadRadialGauge>
    </Grid>
</Window>

I am getting an error when i am compiling the project:
"The tag 'RadRadialGauge' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'. Line 7 Position 10."
"The type 'telerik:RadRadialGauge' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built."

What am i doing wrong?
Thanks,

Andrey
Telerik team
 answered on 07 Feb 2012
2 answers
143 views

I'd like to group some properties in one node with general name. I do e.PropertyDefinition.GroupName = "Name" in AutoGeneratingPropertyDefinition(), but... nothing!

Can you write code of sample?

Daenur
Top achievements
Rank 1
 answered on 07 Feb 2012
1 answer
124 views
My application will be running on a laptop with a touch screen, which will be mounted in a police car and used by the officer while driving.  To make things easy on him/her, I'm making the controls large so they'll find the fingers of people with sausage fingers, like my own.

I'm using a MaskedDateTimeInput control on one screen for entering a TimeSpan.  This is going inside of a UserControl with two large RepeatButtons, one with an arrow pointing up and one with an arrow pointing down.  The idea is that the user will tap the screen in the MaskedDateTimeInput control, say in the seconds area.  The user can then tap or hold the RepeatButton with the Up arrow and I want the MaskedDateInput control to treat it as though the user had pressed the up arrow key on the keyboard.  The same goes for the RepeatButton with the down arrow acting like the user had pressed the down arrow key on the keyboard.

How can I get this functionality to work?  There must be some kind of a WPF command defined by the control but I don't know where to find it. 

Also, is it possible to specify how much one press of the up or down arrow key will change the value of the part of the time span it's in?

Tony
Petar Mladenov
Telerik team
 answered on 07 Feb 2012
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
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
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?