Telerik Forums
UI for WPF Forum
4 answers
155 views
Hi,
        In my WPF application i am using Carousel Control. I am using "CarouselScrollButton" for navigation the initial data is look like this
1                    5
      2        4
           3                                              After Clicking the single navigation button the the data looks like this

                       1                                
I want to restrict the navigation like this when ever the data comes like this i need to restrict the Navigation button to be disable
                       3
                 2
             1

Thanks & Regards,
Rajini.

Rajini
Top achievements
Rank 1
 answered on 05 Jan 2012
0 answers
81 views
Hi ! 
I have a DataTable below.(DB2 Not Support bool type)
ID / Name / Sex
============
1    lee        M 
2    lee        F 
3    lee        M 

how can i  convert to Sex Column to CheckBoxColumn  
at auto generate = true , also not define column defintion
result ==> id 1 checked ,2 unchecked, 3 checked
Is Possible?
please helpme





lee
Top achievements
Rank 1
 asked on 05 Jan 2012
2 answers
123 views

We are using MVVM Prism for our application, and there are three assemblies in our project.
myWPF (general stuffs and user configuration)
myApp (knows only myWPF)
myModules (knows only myWPF)

Does Telerik provide any user configuration object for storing/retrieving user preferences such as application theme, docking layout, default selection of a control in a module, and etc...

Thanks




Chris
Top achievements
Rank 1
 answered on 04 Jan 2012
2 answers
108 views
Hello

I have only few items that I wanna add to backstage and all are simple buttons with commands. I don't need the right side of backstage. Is there a way to hide it?
Krzysztof
Top achievements
Rank 1
 answered on 04 Jan 2012
2 answers
171 views
Hi,

We are using some RadGridView in multiple RadDocking Panes.
Thoses grids have over 1000 items and we got an serious performance issue when switch between panes (hosted in DocumentHost). It takes about 1-2sec before displaying the pane.

I don't understand since in Q2 2011 it works pretty much. But now in Q3 2011 it's really slow.

The grid is quite simple :

<Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto"/>
                        <RowDefinition Height="500"/>
                    </Grid.RowDefinitions>
                    <GroupBox Header="Recherche"  Margin="5">
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="Filtre" Margin="5"/>
                            <TextBox x:Name="txtFilter" Margin="5" Width="200"/>
                        </StackPanel>
                    </GroupBox>
 
                    <telerik:RadGridView Grid.Row="1" Height="500" ShowGroupPanel="False" IsFilteringAllowed="False" CanUserFreezeColumns="False" CanUserReorderColumns="False" ValidatesOnDataErrors="None" FilterTextBox:TextBoxFilterBehavior.TextBox="{Binding ElementName=txtFilter}"  SelectedItem="{Binding SelectedItem}" IsReadOnly="True" RowIndicatorVisibility="Collapsed"  HorizontalAlignment="Stretch" VerticalAlignment="Stretch" ItemsSource="{Binding ItemList}" AutoGenerateColumns="False">
                        <i:Interaction.Triggers>
                            <i:EventTrigger EventName="MouseDoubleClick" >
                                <ei:CallMethodAction TargetObject="{Binding}"  MethodName="EditCommand"/>
                            </i:EventTrigger>
                        </i:Interaction.Triggers>
 
                        <telerik:RadGridView.Columns>
                            <telerik:GridViewDataColumn Width="100" Header="Code" DataMemberBinding="{Binding Code}" UniqueName="Code"/>
                            <telerik:GridViewDataColumn Width="450" Header="Désignation Longue" DataMemberBinding="{Binding LongName}"/>
                            <telerik:GridViewCheckBoxColumn Width="80" Header="Bloqué" DataMemberBinding="{Binding IsLocked}" UniqueName="IsLocked"/>
                        </telerik:RadGridView.Columns>
                         
                    </telerik:RadGridView>
                </Grid>

I've tested to remove the GridViewCheckBoxColumn, without luck.

When me application window is sized to the minimum in order to display only 1 row in the grid, it's really fast, but in full screen (displaying about 30 items visible) it's really slow...

Any help ?

Thanks.
Bernard
Top achievements
Rank 1
 answered on 04 Jan 2012
1 answer
116 views
How to change the gridview selected row backcolor,forecolor and font style.
Vlad
Telerik team
 answered on 04 Jan 2012
0 answers
221 views
Hi,

I'm wondering whether there is such a Control in the WPF suite to enable me to view powerpoint / openoffice impress slideshows in my WPF application. If not, does anyone has any suggestions how to go about doing this within my application, rather than spawning the powerpoint viewer as a separate full screen application? Thanks for your help.
Ring Lee
Top achievements
Rank 1
 asked on 04 Jan 2012
8 answers
312 views
Hello, I am having some serious issues here.

I have defined this grid:

<telerik:RadGridView
    x:Name="something"
    ItemsSource="{Binding Events}"
    telerik:Theming.Theme="Windows7"
    ShowGroupPanel="False"
    AutoGenerateColumns="False"
    ScrollMode="Deferred">
    <telerik:RadGridView.ScrollPositionIndicatorTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding ScrollIndicator}" />
        </DataTemplate>
    </telerik:RadGridView.ScrollPositionIndicatorTemplate>
    <telerik:RadGridView.Columns>
        <telerik:GridViewDataColumn Header="ID" DataMemberBinding="{Binding ID}" Width="100" />
        <!--<telerik:GridViewDataColumn Header="Artikkel" DataMemberBinding="{Binding Article}" />
        <telerik:GridViewDataColumn Header="Sats" DataMemberBinding="{Binding Batch}" />
        <telerik:GridViewDataColumn Header="Serienummer" DataMemberBinding="{Binding Serial}" />-->
        <telerik:GridViewDataColumn Header="Operasjon" DataMemberBinding="{Binding EventType}" Width="150" />
        <telerik:GridViewDataColumn Header="Startet" DataMemberBinding="{Binding Started}" Width="100" />
        <telerik:GridViewDataColumn Header="Avsluttet" DataMemberBinding="{Binding Ended}" Width="100" />
        <telerik:GridViewDataColumn Header="Status" Width="100">
            <telerik:GridViewDataColumn.CellTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Status}" HorizontalAlignment="Left" FontWeight="Bold" Foreground="{Binding StatusColor}" />
                </DataTemplate>
            </telerik:GridViewDataColumn.CellTemplate>
        </telerik:GridViewDataColumn>
        <telerik:GridViewDataColumn Header="Bruker" DataMemberBinding="{Binding EmployeeID}" Width="100" />
        <telerik:GridViewDataColumn Header="Informasjon" DataMemberBinding="{Binding Information}" Width="300" />
    </telerik:RadGridView.Columns>
</telerik:RadGridView>

Using a bog standard ListView, this was performing just fine - but now I am having UI hangs while scrolling (when scrollmode was realtime) and I get a black background inside the window border while resizing..

What am I missing?

  // Regards, Morten
Morten Nilsen
Top achievements
Rank 1
 answered on 03 Jan 2012
1 answer
74 views
I have a collection view source with a grouping to which a GridView is bound.  While scrolling, the group header scrolls with the other records.  Is it possible to have the grouped header fixed while it's records are visible in the visibile scroll area?
Vanya Pavlova
Telerik team
 answered on 03 Jan 2012
4 answers
58 views
Hello, I have been poking around the documentation, trying to find out if "ShowDistinctFilters" does what I want..
However, all I am able to find is "Gets or sets a value indicating whether this column will show distinct filters.".
That is taken from http://www.telerik.com/help/wpf/p_telerik_windows_controls_gridviewcolumn_showdistinctfilters.html

Is there a more helpful documentation available somewhere I am not finding?

What I want, by the way, is making a DateTime column not show every single time that is listed in the column with a checkbox, but still give the user the ability to filter using a date/time picker (from-to)

  // Regards, Morten
Morten Nilsen
Top achievements
Rank 1
 answered on 03 Jan 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?