Telerik Forums
UI for WPF Forum
1 answer
116 views
Hi,

I have a requirement whereby I will be using the TileView control to show order entry forms.  It will initially be blank and as users click on the, say "Create Order" button a new order/tile will be added to the collection.
 
1.  When a new order/tile is created it should default and replace the existing maximized tile
2. The tiles should display different levels of data depending on their current view.

I think I have cracked part 1 of the requirement.  I seem to be having problems with part 2 (displaying different views).  Please see my  prototype and let me know where I am going wrong.

Many Thanks
Abs
Zarko
Telerik team
 answered on 25 Jun 2012
7 answers
171 views
Hi, I was wondering, is it possible to have two Y-Axis on a chart,

if so is there a showcase ?

kind regards
krissi
Sia
Telerik team
 answered on 25 Jun 2012
3 answers
151 views
hi all,

is there a way to set a TemplateSelctor for the NewItem operation?

....like the ReadOnlyTemplateSelector or EditTemplateSelector

greetz
Sascha
Top achievements
Rank 1
 answered on 25 Jun 2012
7 answers
823 views

Hello Telerik,

    A while back I threw together a basic GridView theme for use by my company... The problem is that I originally removed the ability to use the built in filter control and now I cannot remember what I removed from the structure.

I have located the 'PART_DistinctFilterControl' control's code, which seems fine, but I cannot find anything else that would prevent the filter indicator from showing... Unless I have completely removed the button's code!

Can you help me put the pieces back together?
Vanya Pavlova
Telerik team
 answered on 25 Jun 2012
6 answers
371 views
Hi Telerik Team,

with the new release 2012.2.607.40, it is no longer possible to select items whether multiple or single.If you use the RadListBoxItem with the normal ListBox, everything is fine.

Any idea?

Greetings
Huercan
naip
Top achievements
Rank 2
 answered on 25 Jun 2012
2 answers
236 views
Hi,

i have a problem to add a DocumentSource on my pdfviewer.

this works fine:
<telerik:RadPdfViewer Grid.Row="1" x:Name="pdfViewer" DocumentSource="F:\\TEMP\\BinderDemo_2009_R4_N55_1\\test.pdf" />

this does not work:
string pdffile_s = "F:\\TEMP\\BinderDemo_2009_R4_N55_1\\test.pdf";
pdfViewer.DocumentSource = new PdfDocumentSource(new System.Uri(@pdffile_s, System.UriKind.Relative));

Why not? I have read this link, but without any good input.
What's wrong in the c# part? I have to add the DocumentSource here.

Please this is a strange Problem! I need help.

Thanks
best Regards
Rene
ITA
Top achievements
Rank 1
 answered on 25 Jun 2012
0 answers
160 views
Hi,
I have a problem with a RadCarouselPanel, my scenario is, that:
<ListView ItemTemplate="{DynamicResource DataTemplateEx}">
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<telerik:RadCarouselpanel >
</telerik:RadCarouselpanel >
</ItemsPanelTemplate>
</ListView.ItemsPanel>
</ListView>

and in the UserControl.Resouces I have defined the DataTempate like that
<DataTemplate>
<Border>
<Grid>
</Grid>
</Border>
</DataTemplate>

And when I selected a item, the background sometimes is grey and sometimes is blue, and I can't change the color.

Anyone Can help me?

Thanks very much.



Beatriz
Top achievements
Rank 1
 asked on 25 Jun 2012
2 answers
205 views
Hi guys!

I want to show KeyTips to the users but I don't get it working.
It works for the QuickAccessToolbar but not for a simple RibbonButton?
I don't see any differences concerning the demo apps. What's wrong?

Thanks!

Here is the code im using:

<
telerik:RadRibbonWindow x:Class="WpfApplication4.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"         xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"         WindowStartupLocation="CenterScreen"         WindowState="Maximized"         mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008">     <Grid>         <Grid.RowDefinitions>             <RowDefinition Height="Auto"/>             <RowDefinition Height="*"/>             <RowDefinition Height="Auto"/>         </Grid.RowDefinitions>         <telerik:RadRibbonView HorizontalContentAlignment="Stretch" Title="Testapp"                                 x:Name="RadRibbonView" telerik:KeyTipService.IsKeyTipsEnabled="True">             <telerik:RadRibbonView.QuickAccessToolBar>                 <telerik:QuickAccessToolBar Margin="15,0,0,0">                     <telerik:RadRibbonButton Text="Save"                              telerik:KeyTipService.AccessText="1" Click="RadRibbonButton_Click" />                     <telerik:RadRibbonButton Text="Undo" telerik:KeyTipService.AccessText="2" />                     <telerik:RadRibbonButton Text="Print" telerik:KeyTipService.AccessText="3" />                 </telerik:QuickAccessToolBar>             </telerik:RadRibbonView.QuickAccessToolBar>              <telerik:RadRibbonTab Header="testtab" telerik:KeyTipService.IsKeyTipsEnabled="True">                 <telerik:RadRibbonGroup Header="testgroup" >                     <telerik:RadRibbonButton Text="Test" telerik:KeyTipService.AccessText="T" Click="RadRibbonButton_Click"/>                 </telerik:RadRibbonGroup>             </telerik:RadRibbonTab>         </telerik:RadRibbonView>         <Grid Grid.Row="1">             <Grid.ColumnDefinitions>                 <ColumnDefinition Width="Auto"/>                 <ColumnDefinition Width="*"/>             </Grid.ColumnDefinitions>         </Grid>     </Grid> </telerik:RadRibbonWindow>
Petar Mladenov
Telerik team
 answered on 25 Jun 2012
3 answers
119 views
Hi,

When we look at a xmal control based off RadDocumentPane in Blend/Visual Studio nothing is displayed in the visual designer. Is this supported?

This example xmal will display blank in Blend/Visual Studio during design time but will work at run time. If change the RadDocumentPane to UserControl it works again the visual designer.

 <trd:RadDocumentPane x:Class="Views.Test"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:trd="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
             xmlns:tc="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
             xmlns:trn="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation""
             mc:Ignorable="d" >
    <Grid>
        <ListBox Width="200" Height="200"> </ListBox>
    </Grid>
</trd:RadDocumentPane>
Konstantina
Telerik team
 answered on 25 Jun 2012
3 answers
169 views
I have license for WPF RadControls and everytime I run/debug my application in VS2010 I receive the "Enjoying your RadControls for WPF trial? You'll enjoy it even more with access to the latest updates across the suite and Telerik's legendary support!"

I do have the license, so is it an error seeing this message?  It started happening after I installed the newest controls Demo release, Q2 2012.
Dimitrina
Telerik team
 answered on 25 Jun 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?