Telerik Forums
UI for WPF Forum
0 answers
229 views
I have tab under which there is my user control containing 2 telerik datagrids and other controls like textbox and buttons. When i navigate using tab key for the  first time it goes through controls in order which i defined by using tab index and also go inside the datagrid cell but on row selection it again go back to main tab and after completing one cycle when i start tabbing again and then when i reach datagrid it skip the datagrid rows and go to the next control . i have defined the keyboardnavigation.Tabindex for each control.and keyboardnavigation.tabnavigation="cycle" and for datagrid i have defined keyboardnavigation.tabnavigation="local".

Kirti
Top achievements
Rank 1
 asked on 26 Oct 2012
8 answers
345 views
Hi All

I am trying to change the background colour of the ItemsPanel of the RadTabControl to transparent 

I tried using:        
        <telerik:RadTabControl.ItemsPanel>
            <ItemsPanelTemplate>
                <telerik:RadWrapPanel Background="Transparent"/>
            </ItemsPanelTemplate>
        </telerik:RadTabControl.ItemsPanel>

but that didnt work (curiously changing the colour to yellow was ok).

While I am here has anybody successfully added a button to tabpanel (not each tabitem) to make a tab control that looks like Chrome, Firefox etc.

Thanks

Paul

Petar Mladenov
Telerik team
 answered on 26 Oct 2012
1 answer
133 views
Hi

It's very important for us to have a double border on a table - is there any supported way to add additional border styles to the default list?

Thanks

Charlie
Petya
Telerik team
 answered on 25 Oct 2012
3 answers
97 views
I have a GridView with EditTriggers set to TextInput and F2. When I click a cell it does not get bordered by a black border, but if I use the arrow keys the black border appears. I need a way to show that the mouse click did indeed select the cell the user clicked. Note: I don't mean enter edit mode but rather the cell that would be edited on the next keystroke/F2 press. 
David
Top achievements
Rank 1
 answered on 25 Oct 2012
9 answers
504 views
Hi,

I use VS2008 and Telerik V2012.2.912.35 and in our project we have a resource file that contain specific style for our controls and I would like to use Telerik resource keys in our style (for Telerik theming purpose) but I don't know how, here is my style and the Telerik keys I want to use:

    <Style x:Key="RadExpander" TargetType="{x:Type telerik:RadExpander}">       
        <Setter Property="Background" Value="{StaticResource Item_AlternateBackground}" />
        <Setter Property="BorderBrush" Value="{StaticResource ControlOuterBorder_Normal}" />
        <Setter Property="BorderThickness" Value="1" />
        <Setter Property="Margin" Value="5" />
        <Setter Property="Padding" Value="3" />
        <Setter Property="Effect">
            <Setter.Value>
                <DropShadowEffect />
            </Setter.Value>
        </Setter>
    </Style>

Thank's
Tina Stancheva
Telerik team
 answered on 25 Oct 2012
6 answers
404 views
Hi,
I am using a radgridview , in which i have few gridviewdatacolumn , i am adding a group descriptor for one of the column , and my requirement is, that column should be hidden from radgridview since i have grouped based on that, 
further GridViewColumn.ShowColumnWhenGrouped Property is not available to me as i am using an older version of telerik Dll, is their any other way to solve this problem?

 following is the xaml of code for more clarity, so i want column Element Path to be hidden as it is used in group descriptor -

 <telerik:RadGridView.Columns>
                                                <telerik:GridViewDataColumn  IsReadOnly="True"  IsGroupable="True"  Header="Element Path" DataMemberBinding="{Binding ElementPath}" Focusable="False" Width="Auto" TextAlignment="Left" IsEnabled="False"/>
                                                <telerik:GridViewDataColumn  IsReadOnly="True"  IsGroupable="True"  Header="Category" DataMemberBinding="{Binding CategoryName}" Focusable="False" Width="Auto" TextAlignment="Left" IsEnabled="False" />
                                                <telerik:GridViewDataColumn IsReadOnly="True"  IsGroupable="False"  Header="Name" DataMemberBinding="{Binding Name}" Width="Auto" Focusable="False" TextAlignment="Left" IsEnabled="False" />
                                                <telerik:GridViewDataColumn IsReadOnly="True"  IsGroupable="False"  Header="Description" HeaderTextAlignment="Left" DataMemberBinding="{Binding Description}" Focusable="False" Width="200" TextAlignment="Left" IsEnabled="False" />
                                                <telerik:GridViewDataColumn IsReadOnly="True"  IsGroupable="True"  Header="Type" DataMemberBinding="{Binding CannonicalType}" Focusable="False" TextAlignment="Left" Width="Auto" IsEnabled="False" />
                                                <telerik:GridViewDataColumn  Header="Value"  IsGroupable="False"  Width="180"  DataMemberBinding="{Binding Value,Mode=TwoWay,ValidatesOnExceptions=True}"  CellTemplateSelector="{StaticResource CellTemplate}" CellEditTemplateSelector="{StaticResource EditTemplateSelector}"  SortingState="None" IsSortable="True"  TextAlignment="Left" IsEnabled="True">
                                                    <telerik:GridViewDataColumn.CellStyle>
                                                        <Style  BasedOn="{StaticResource {x:Type tt:GridViewCell}}" TargetType="tt:GridViewCell">
                                                            <Setter Property="FontWeight" Value="Normal" />
                                                            <Style.Triggers>
                                                                <DataTrigger Binding="{Binding Path=IsDefaultValueModified,Mode= TwoWay}" Value="true">
                                                                    <Setter Property="FontWeight" Value="Bold" />
                                                                </DataTrigger>
                                                                <DataTrigger Binding="{Binding Path=ParameterInEditMode, Mode=TwoWay}"  Value="true">
                                                                    <Setter Property="FontStyle" Value="Italic" />
                                                                </DataTrigger>
                                                                <DataTrigger Binding="{Binding IsEnabled}" Value="true">
                                                                    <Setter Property="IsEnabled" Value="true" />
                                                                    <Setter Property="Focusable" Value="true" />
                                                                </DataTrigger>
                                                                <DataTrigger Binding="{Binding IsEnabled}" Value="false">
                                                                    <Setter Property="IsEnabled" Value="false" />
                                                                    <Setter Property="Focusable" Value="false" />
                                                                </DataTrigger>
                                                            </Style.Triggers>
                                                        </Style>
                                                    </telerik:GridViewDataColumn.CellStyle>
 
                                                </telerik:GridViewDataColumn>
                                                <telerik:GridViewDataColumn  IsGroupable="False" IsReadOnly="True" Header="Resolved Value" DataMemberBinding="{Binding ResolvedValue}" TextAlignment="Left" Width="180" IsEnabled="False"/>
 
                                            </telerik:RadGridView.Columns>
                                            <telerik:RadGridView.GroupDescriptors>
                                                <telerik:ColumnGroupDescriptor>
                                                    <telerik:ColumnGroupDescriptor.Column>
                                                        <telerik:GridViewColumn Header="Element Path"  GroupMemberPath="ElementPath" />
                                                    </telerik:ColumnGroupDescriptor.Column>
                                                </telerik:ColumnGroupDescriptor>
                                            </telerik:RadGridView.GroupDescriptors>




Ankush
Top achievements
Rank 1
 answered on 25 Oct 2012
1 answer
213 views
Hi
I facing a problem of cope content Rich Text Box to MS Word. The problem are when i create a multilevel list in rich text box then copy this list and past this list in ms word the last element of the list lose style of the list see the attachment.
please help me any one
Vasil
Telerik team
 answered on 25 Oct 2012
3 answers
258 views
What is the best way to set a minimum width on a slider while having it still function correctly?

I have a timeline that can be zoomed out to a number of years and zoomed into a few minutes.  When zooming in, the slider's width is shrinking down to the point the middle thumb is unusable.

I thought this may be an existing forum discussion,but I was unable to spot it in a search so my apologies if I missed it.
Tsvetie
Telerik team
 answered on 25 Oct 2012
1 answer
210 views
Hi,

is there any Example with datasource binding?
What is possible (xml, sqlite,...)?
Whats the best way?

Thanks
Best Regards
Rene
Rosen Vladimirov
Telerik team
 answered on 25 Oct 2012
5 answers
359 views
Hello,

I am having problems with the grid's built in ScrollViewer when the grid is resized. I am using AutoGenerateColumns to set up the grid from a DataTable. There are enough columns in the table that no matter the size of the window.

When I start the application the horizontal scrollbar in the ScrollViewer is active, but when I maximize the application it goes away, even though there are still too many columns to fix on a screen.

The structure of the view is

<Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*" />
            <RowDefinition Height="Auto" />
        </Grid.RowDefinitions>

        <telerik:RadGridView AutoGenerateColumns="True"
                           Other properties to set bindings/>

        <View:SomeView Grid.Row="1"
                           MinHeight="75"
                           Visibility="{Binding ShowThisView, Converter={StaticResource BooleanToVisibilityConverter}}" />

</Grid>

In the other view there is basically a grid and a chart. Selecting an item from the grid selects data for the view and opens it. If I select a row *before* maximizing then the scrollbar updates automatically, if not then it will not.

Also, if I seize the vertical scrollbar and  scroll down part of the way, then the horizontal scrollbar snaps back into place.

Not sure what the problem is, something to do with the resize event, or how the columns are generated.

Thank you,

Eli
Dimitrina
Telerik team
 answered on 25 Oct 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
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?