Telerik Forums
UI for WPF Forum
4 answers
241 views

A part of a table shows the following datas:

[picture1.png]

The quick filter (Funnel Icon) doesn’t show all the values from the selectable items.

[picture2.png]

 

It seems well in the list, that the numbers are in ascending order, but more than one value which is in the table is missing from it (eg. ’-0,49’ or ’6,00’in the upper picture), and more than one value is duplicated (eg. ’-8,51’).

Informations and source code:

<Style x:Key="RightAlignedGridColumnStyle" TargetType="{x:Type telerik:GridViewDataColumn}">

      <Setter Property="TextAlignment" Value="Right"/>

</Style>

<Style x:Key="PercentGridColumnStyle" TargetType="{x:Type telerik:GridViewDataColumn}"

         BasedOn="{StaticResource ResourceKey=RightAlignedGridColumnStyle}">

      <Setter Property="DataFormatString" Value="{}{0:N2}"/>

</Style>

 

<telerik:GridViewDataColumn Width="185" Header="Low pr % to Normal pr orig"

     DataMemberBinding="{Binding LowPriceToEDLPOriginal}"

     Style="{StaticResource ResourceKey=PercentGridColumnStyle}">

</telerik:GridViewDataColumn>

 

  • LowPriceToEDLPOriginal: Receive from database, with not only two, but three digits after the decimal. Presumably the duplications occur because of this, because there is a ‘-8,511’ and a ‘-8,512’ value in the database.

 

 

Is there any solution for our problem? Thank you for your answer!

 

Attila Pados
Top achievements
Rank 1
 answered on 26 Oct 2012
1 answer
125 views
Is it possible to support arbitrary input, separated by semicolon (like the email entry field in gmail)?
Ivo
Telerik team
 answered on 26 Oct 2012
0 answers
116 views
Hi all,
       I have several text box, button and 2 datagrid on my screen, in tab key navigation, when datagrid row is selected (service call on row selection), tab  key is again going back to the main tab.i have applied keyboardnavigation.tabnavigation="local" on datagrid.  please help me in resolving this problem.
Kirti
Top achievements
Rank 1
 asked on 26 Oct 2012
0 answers
219 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
323 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
122 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
85 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
489 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
381 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
200 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
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
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?