Telerik Forums
UI for WPF Forum
2 answers
199 views
I am using the RadGridView to simulate a ListBox because I want Delete functionality that isn't built into the RadListBox.
I've removed the headers, the RowIndicator, and I only have one column, but there's still a GridSplitter on the left side of the control. (See attached screenshot.) How can I get rid of this?

Here's my control XAML. I'm using Version 2012.2.607.40.

Thanks!

                <telerik:RadGridView Grid.Row="1"
                                     Margin="0,5,0,0"
                                     AllowDrop="False"
                                     SelectionMode="Extended"
                                     ShowGroupPanel="False"
                                     ShowColumnHeaders="False"
                                     ShowColumnFooters="False"
                                     ShowInsertRow="False"
                                     CanUserInsertRows="False"
                                     CanUserDeleteRows="True"
                                     ColumnWidth="*"
                                     CanUserResizeColumns="False"
                                     EditTriggers="None"
                                     RowDetailsVisibilityMode="Collapsed"
                                     RowIndicatorVisibility="Collapsed"
                                     AutoGenerateColumns="False"
                                     ItemsSource="{Binding Words}"
                                     MouseDoubleClick="wordList_MouseDoubleClick"
                                     Deleted="wordList_Deleted"
                                     Deleting="wordList_Deleting">
                    <telerik:RadGridView.Columns>
                        <telerik:GridViewDataColumn DataMemberBinding="{Binding Phrase}" Width="*">
                            <telerik:GridViewDataColumn.CellTemplate>
                                <DataTemplate>
                                    <Grid>
                                        <ContentControl Content="{Binding}"
                                                        ContentTemplate="{StaticResource WordDataTemplate}"/>
                                    </Grid>
                                </DataTemplate>
                            </telerik:GridViewDataColumn.CellTemplate>
                        </telerik:GridViewDataColumn>
                    </telerik:RadGridView.Columns>
                    <telerik:RadGridView.SortDescriptors>
                        <telerik:ColumnSortDescriptor Column="{Binding Columns[\Phrase\], ElementName=wordList}" 
                                                            SortDirection="Ascending" />
                    </telerik:RadGridView.SortDescriptors>
                </telerik:RadGridView>
Randy
Top achievements
Rank 1
 answered on 25 Jun 2012
1 answer
122 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
173 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
158 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
872 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
386 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
242 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
168 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
215 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
122 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
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
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?