Telerik Forums
UI for WPF Forum
1 answer
237 views
Hello, I'm using RadVirtualGrid with Custom DataProvider, how do I configure the display of not all columns from my collection?
Yoan
Telerik team
 answered on 27 Sep 2017
3 answers
517 views

I am creating a ViewModel for a Window with a kendo Wizzard control on it. The ViewModel is getting very big because I 5 pages in my wizzard. Is there a way to bind a ViewModel to a page. 

Sorry I am new to WPF and MVVM.

Basically I have something like this.

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
    xmlns:ui="clr-namespace:SMS.Installer.UI"
    x:Class="SMS.Installer.UI.MainWindow"
        mc:Ignorable="d"
        Icon="Resources/favicon.ico"
        Title="SMS Installer"
        WindowStartupLocation="CenterScreen">
    <Window.DataContext>
        <ui:MainWindowViewModel/>
    </Window.DataContext>
    <Grid>
        <DockPanel>
            <telerik:RadWizard x:Name="MainWindowWizard" >

                <!-- Introduction form -->
                <telerik:WelcomeWizardPage Name="IntroductionPage" SideHeaderWidth="120">
                    <!-- some page controls removed -->
                </telerik:WelcomeWizardPage>
                <!-- License agreement -->
                <telerik:WizardPage Name="LicenseAgreementPage" SideHeaderWidth="120" AllowNext="{Binding CanLicenseAgreementPageNext}">

                   <!-- !!!!!! WANT TO PUT BINDING HERE !!!!!! -->

                   <!-- some page controls removed-->
                </telerik:WizardPage>
                <!-- License key -->
                <telerik:WizardPage Name="LicenseKeyPage" SideHeaderWidth="120"  AllowNext="{Binding CanLicenseKeyPageNext}">
                    <!-- some page controls removed-->
                </telerik:WizardPage>
                <!-- database -->
                <telerik:WizardPage Name="DatabasePage" SideHeaderWidth="120"  AllowNext="{Binding CanDatabasePageNext}">
                    <!-- some page controls removed-->
                </telerik:WizardPage>
                <!-- installation -->
                <telerik:CompletionWizardPage Name="InstallationPage" SideHeaderWidth="120" AllowHelp="False">
                    <!-- some page controls removed-->
                </telerik:CompletionWizardPage>
            </telerik:RadWizard>
        </DockPanel>
    </Grid>
</Window>

 

 

admin
Top achievements
Rank 1
 answered on 26 Sep 2017
8 answers
310 views
Hello,

Is there some way to plot Stepline series and Line series on the same graph ? I have a cartesian chart with several line and area series and I would like to add stepline serie without modifying my data (e.g. without adding a Y value at each X to have the constant line). 

Another question, is it possible to change the base line of an area series so that color fill stops at a specific Y value ? 
alpha-bit
Top achievements
Rank 1
 answered on 26 Sep 2017
5 answers
176 views

Hi,

Sometimes the bars are extremely thin for some sparse datasets.  When I display a bar chart with a DateTimeContinuousAxis horizontal axis, spanning just a few hours with only 2 or 3 items, the bars are extremely thin.  If I change the timespan to a day, also with just a few items, the bars look normal (see attached screenshots).  I'm using UI for WPF Q2 2016, Is this s bug?

Thanks,

Brian

Brian
Top achievements
Rank 1
 answered on 26 Sep 2017
3 answers
563 views

I am sure this was working but I am not seeing the correct output now:

Row Data Context Property

[Display(Name = "Start Date")]
[DisplayFormat(DataFormatString = "{0:d}")]
public DateTime ClaimDate { get; set; }

 

XAML in the View

<telerik:RadGridView VerticalAlignment="Stretch" CanUserDeleteRows="False" CanUserFreezeColumns="False" CanUserInsertRows="False" CanUserReorderColumns="False" CanUserSearch="False" ShowGroupPanel="False"
                       ShowSearchPanel="False" ItemsSource="{Binding Data.ItemsSource}" BorderBrush="Transparent" IsReadOnly="True" ShowToolTipOnTrimmedText="True" RowIndicatorVisibility="Collapsed"
                       SelectionMode="Single" IsFilteringAllowed="False" AlternationCount="2">
  </telerik:RadGridView>

 

C# Interactive Window

> DateTime.Today.ToString("d")
"05/09/2017"

 

Screenshots are attached.

 

Any ideas?

Thanks,
Maurice

 

 

 

 

Dilyan Traykov
Telerik team
 answered on 26 Sep 2017
2 answers
285 views
Hello Sirs,

I'm trying to show the selectedColor/selectedItem in a rectangle which is inside my RadColorPicker.

<Style TargetType="telerik:RadColorPicker" 
           x:Name="colorPicker"
           BasedOn="{StaticResource StandardInputControlStyle}"
           >
        <Setter Property="Margin" Value="5,0,10,5"></Setter>
        
        <Setter Property="ContentTemplate">
            <!-- responsible for the button's design -->
            <Setter.Value>
                <DataTemplate>
                    <TextBlock>
                        <Rectangle HorizontalAlignment="Center" 
                             VerticalAlignment="Center"
                             Width="108" 
                             Height="23" 
                             x:Name="Rectangle" 
                             Fill="{Binding ElementName=colorPicker, Path=SelectedColor}">
                        </Rectangle>
                    </TextBlock>
                </DataTemplate>
            </Setter.Value>
        </Setter>
    </Style>
Luis
Top achievements
Rank 1
 answered on 25 Sep 2017
2 answers
193 views

Hi Admin

I have a map with markers(PushPins) in it. Now I want to add titles(place) on top of each marker to distinguish then. I was hoping to get some help with that.

 

Thanks in andvance

Martin Ivanov
Telerik team
 answered on 25 Sep 2017
2 answers
328 views

I have some columns with `CellStyleSelector` and `CellTemplateSelector` which associating with a property in row data, when the property changed in code behide, both StyleSelector and TemplateSelector are not refreshed.

now I have got the row which need to refresh from `ItemContainerGenerator`, but have no idea to do that.

RadGridView.Rebind() works but it might be a little heavy.

public void RefreshRowTheme(object rowData)
{
    var container = this.grid.ItemContainerGenerator.ContainerFromItem(rowData);
    if (container != null)
    {
        var row = container as GridViewRow;
        if (row != null)
        {
            //how to re-apply StyleSelector and TemplateSelector on all cells
        }
    }
}

 

Thanks.

runer
Top achievements
Rank 1
 answered on 25 Sep 2017
3 answers
488 views

Hi Telerik,

 

Our users would like to zoom in/out of a GridView via 'ctrl-mouse wheel up/down', much like Excel zooms in and out of the spreadsheet.

Could you please help or give an example of how to do this with the RadGridView?

 

Kind regards

Abhinav
Top achievements
Rank 1
 answered on 22 Sep 2017
1 answer
348 views

Hello,

I have a gridview control which items is automatically updated from time to time. A user has ability to group items in the grid (using standard drag and drop approach). However, after items updating groups collapse, even if they were expanded. If I set AutoExpandGroups = false, groups will be always expanded after update.

I would like to save expand/collapse group status. Is it possible to implement?

Thank you in advance

Stefan
Telerik team
 answered on 22 Sep 2017
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
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
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?