Telerik Forums
UI for WPF Forum
1 answer
135 views
In a master / detail scenario and need to know the best way to lock the selected item/row in the grid.  I tried isenabled and that doesn't seem to do the trick. Ideally I'd like to bind a bool from the vm.
Milan
Telerik team
 answered on 01 Apr 2011
1 answer
121 views

Hi.  I downloaded the soure control for the WPF Controls and noticed that its the .NET 3.5 Framework version.  Is there  a .NET 4.0 version of the code available for download.  Thanks.

Randy
Vlad
Telerik team
 answered on 01 Apr 2011
3 answers
1.3K+ views
Hi,

How i can implement group of Toggle Button, one button will be active at a time.

Please suggest/provide sample code.


Regards, Sreeju
Tina Stancheva
Telerik team
 answered on 31 Mar 2011
1 answer
76 views
Good morning
When I edit a row in TreeListView and confirm the change via Enter, 
the TreeListView always scroll to the first row.
Is there a way to disable this behaviour (aka maintain the edited row into view)?
Thank in advance
Marco
marco
Top achievements
Rank 1
 answered on 31 Mar 2011
1 answer
94 views
Hi, I am a new guy to WPF and Radcontrols and I created test application to use Rad Window control  but It is not working.

xaml code is,

<telerik:RadWindow x:Class="test.Window1"
    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"
    Header="Window1" Height="300" Width="300">
    <Grid>
        
    </Grid>
</telerik:RadWindow>

I inherited the rad window,

public partial class Window1 : RadWindow

The telerik rad control version is 2010.3.1314.35

Windows XP SP 3

Visual Studio 2008
Version 9.0.30729.1 SP

Microsoft .Net Framework
Version 3.5 SP1

Please help me.

Thank You.
Princy
Top achievements
Rank 2
 answered on 31 Mar 2011
1 answer
436 views
Hi.

I'm having some trouble trying to accomplish the following, maybe you can help me.

I have two or more tabs, each of them having several controls (combos, textbox, textblock, grids, etc.). None of this controls have the tabindex setted, the position of the control within the xaml code should be sufficient to ensure the right order.

When the user hits the tab key in the last control of the first tab, I want to focus the first control in the second tab.

Is this possible? Is it possible without setting the tabindex?

Thanks!

Nico
Petar Mladenov
Telerik team
 answered on 31 Mar 2011
6 answers
251 views
Hello,

When you shrink the size of the bottom area, all of the titles show up on a single line instead of on their individual lines.  Is it possible to begin in this state, where all of the items only show up on the single line instead of many?

Thanks!
Petar Mladenov
Telerik team
 answered on 31 Mar 2011
3 answers
200 views
A few questions after playing with the Sparkline example here : C:\Program Files (x86)\Telerik\RadControls for WPF Q3 2010 SP1\Demos\Examples\BulletGraph

1.  Can a RadColumnSparkline show the bars in a horizontal orientation?  Default seems to be vertical - I didn't see a property to change orientation.

2.  The examples all seem to bind to a DateTime on the X-Axis.  Is it possible to bind to something like a string and if so what would happen?

Where your current example data looks like:
actual,Late arrivals,11/1/2004,1
actual,Late arrivals,12/1/2004,24
actual,Late arrivals,1/1/2005,32

What if I wanted to bind to NOTE: the date is replaced by a string (site name) value:

web ranking,Site 1, 1000
web ranking,Site 2, 2222
web ranking,Site 3, 4444

3.  Do you have an example of how to do some of this XAML binding in C# code rather than XAML?  In essence doing this type of thing in a non-xaml/dynamic way?
              <telerik:GridViewDataColumn Header="actuals nov'04 - nov'05">
                    <telerik:GridViewDataColumn.CellTemplate>
                        <DataTemplate>
                            <telerik:RadColumnSparkline ShowFirstPointIndicator="True" ShowLastPointIndicator="True" ShowHighPointIndicators="True" ShowLowPointIndicators="True" ItemsSource="{Binding ActualMeasure}" XValuePath="Date" YValuePath="Value" Width="120" Height="20" />
                        </DataTemplate>
                    </telerik:GridViewDataColumn.CellTemplate>
                </telerik:GridViewDataColumn>

4.  I'm adding another question to the post:

I have 5 data points, but the chart is only showing 4 of the points. Like it is throwing out the lowest data point and not plotting it at all.  Is that a function of telerik:RadColumnSparkline attribute?


actual,(Google) Day Spas in Houston,11/1/2004,100
actual,(Google) Day Spas in Houston,12/1/2004,75
actual,(Google) Day Spas in Houston,1/1/2005,72
actual,(Google) Day Spas in Houston,2/1/2005,77
actual,(Google) Day Spas in Houston,3/1/2005,66


 <telerik:RadColumnSparkline ShowAxis="true" ShowLastPointIndicator="True" ShowFirstPointIndicator="True" ShowHighPointIndicators="True" ShowLowPointIndicators="True"  ItemsSource="{Binding ActualMeasure}" XValuePath="Date" YValuePath="Value" Width="120" Height="20" />
Yavor
Telerik team
 answered on 31 Mar 2011
1 answer
125 views
Hi there,

I want the grid to display empty rows up to the bottom if i don't have data in it. Is there any way how to add a empty row all the time....

thanks
Vlad
Telerik team
 answered on 31 Mar 2011
1 answer
56 views
Hi there,

I've gone through the examples I could find for point mark visibility, but could not get it to work. I have a chart with two series mappings: (i) BarSeriesDefinition and (ii) LineSeriesDefinition. In the LineSeriesDefinition I only want to display the PointMark in the first and last PointMark in the data set as the FieldName "Target" value does not change.

Here is what I have:
<telerik:RadChart x:Name="radChart" ItemsSource="{Binding CounterValues}">
  <telerik:RadChart.DefaultView>
    <telerik:ChartDefaultView>
      <telerik:ChartDefaultView.ChartTitle>
        <telerik:ChartTitle Content="Counter Data" />
      </telerik:ChartDefaultView.ChartTitle>
      <telerik:ChartDefaultView.ChartArea>
        <telerik:ChartArea>
          <telerik:ChartArea.AxisX>
            <telerik:AxisX IsDateTime="True" Step="1" LabelStep="1" DefaultLabelFormat="dd-MMM" StepLabelLevelCount="1" StepLabelLevelHeight="1" />
          </telerik:ChartArea.AxisX>
        </telerik:ChartArea>
      </telerik:ChartDefaultView.ChartArea>
    </telerik:ChartDefaultView>
  </telerik:RadChart.DefaultView>
  <telerik:RadChart.SeriesMappings>
    <telerik:SeriesMapping LegendLabel="Counter Values">
      <telerik:SeriesMapping.SeriesDefinition>
        <telerik:BarSeriesDefinition/>
      </telerik:SeriesMapping.SeriesDefinition>
      <telerik:SeriesMapping.ItemMappings>
        <telerik:ItemMapping DataPointMember="YValue" FieldName="CounterValue" />
        <telerik:ItemMapping DataPointMember="XValue" FieldName="Day" />
      </telerik:SeriesMapping.ItemMappings>
    </telerik:SeriesMapping>
    <telerik:SeriesMapping LegendLabel="Target">
      <telerik:SeriesMapping.SeriesDefinition>
        <telerik:LineSeriesDefinition/>
      </telerik:SeriesMapping.SeriesDefinition>
      <telerik:SeriesMapping.ItemMappings>
        <telerik:ItemMapping DataPointMember="YValue" FieldName="Target" />
        <telerik:ItemMapping DataPointMember="XValue" FieldName="Day" />
      </telerik:SeriesMapping.ItemMappings>
    </telerik:SeriesMapping>
  </telerik:RadChart.SeriesMappings>
</telerik:RadChart>


Can you please let me know how to do this?
Sia
Telerik team
 answered on 30 Mar 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
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?