Telerik Forums
UI for WPF Forum
1 answer
117 views

Hello

I generate columns on the fly and give cell template and cell edit template.

 After I changed value in the cell edit the grid generate default cells for row

Instead of my cell template.

 I click on the cell edit and go out it generate my cell template.

Is this known problem?

Best Regards

Ehud

Dimitrina
Telerik team
 answered on 24 Jul 2013
1 answer
162 views
Hi,

when I drag a RadDiagram to a window or a usercontrol I get a wizard showing up where I can set diagram options.
I a window it works perfect.

If the target is a UserControl I simply get an empty RadDiagram tag.

Of course I can help me out with some Dummy Window to drag my diagrams on and copy the resulting XAML to my UserControl.

I just wanna know if this is "by design" or a problem.

Manfred
Petar Mladenov
Telerik team
 answered on 24 Jul 2013
1 answer
100 views
I've got my RadDiagram and many shapes on it, I let the end-user to select shape from the list and I'd like to zoom to selected shape. I get the shape position and use diagram zoom in method like this:

radDiagram.ZoomIn(1, shape.Position);

It does not zoom to shape, what am I doing wrong?
Michał
Top achievements
Rank 1
 answered on 24 Jul 2013
0 answers
122 views
I'm developing a windows 8 WPF app which has a lot of Telerik graphs. I was wondering if there was an inbuilt function to capture images of these graphs, as I would like to use these to generate reports from within the app.
Thanks in advance :)
Shweta
Top achievements
Rank 1
 asked on 24 Jul 2013
6 answers
115 views
Hi,

 A RadChart is used in one of the projects, the Labels in the chart are always shown in different positions. Though the values for various (2)categories are same the positions of the labels are different.(Attached picture Sample3)

Is there a way to control the position of the Label. Please let me know for any workarounds.

Thank you,
Phani.
Phani Kumar
Top achievements
Rank 1
 answered on 23 Jul 2013
2 answers
113 views
Hi All,
what purpose for Appointment.Location?

Tanks.
Wenjie
Top achievements
Rank 1
 answered on 23 Jul 2013
9 answers
169 views
IHi,

I have a grouping action event (see below) that fires when as a user I drop a column into the grouping area.  I also get the action event when I close the group.  However, when I create the group descriptor pro-grammatically (see below) the action event does not fire but the group   displays properly.  When I close the  group pro-grammatically created group I get the action event but  the program crashes.  What am i missing?

        private void CreateGroup_Click(object sender, RoutedEventArgs e)
        {
            GroupDescriptor descriptor = new GroupDescriptor();
            descriptor.Member = "CategoryName";
            descriptor.SortDirection = ListSortDirection.Ascending;
            this.gridQueryResult.GroupDescriptors.Add(descriptor);
           
            descriptor = new GroupDescriptor();
            descriptor.Member = "ProductName";
            descriptor.SortDirection = ListSortDirection.Ascending;
            this.gridQueryResult.GroupDescriptors.Add(descriptor);           
        }

private void gridQueryResult_Grouping(object sender, GridViewGroupingEventArgs e)
        {
            Telerik.Windows.Controls.GridViewColumn column = ((ColumnGroupDescriptor)e.GroupDescriptor).Column;

            if (e.Action == GroupingEventAction.Place)
            {
                if (column != null)
                    column.IsVisible = false;
            }
            else if (e.Action == GroupingEventAction.Remove)
            {
                if (column != null)
                    column.IsVisible = true;
            }
        }
Richard Harrigan
Top achievements
Rank 1
 answered on 23 Jul 2013
2 answers
508 views
Hello,
I have set the SelectionMode="Extended" on my RadListBox; however the behavior identical to "Multiple", whereas Shift and Ctrl have no effect.  Below is my Xaml...

<telerik:RadListBox ItemsSource="{Binding MasterViewModel.ElementTypeCollectionView}"
                    Margin="3"
                    BorderThickness="0"
                    SelectionMode="Extended">
    <telerik:RadListBox.ItemTemplate>
        <DataTemplate>
            <CheckBox Checked="CheckBox_Checked"
                      IsChecked="{Binding RelativeSource={RelativeSource AncestorType={x:Type telerik:RadListBoxItem}}, Path=IsSelected}">
                <CheckBox.Content>
                    <TextBlock>
                        <TextBlock.Text>
                            <MultiBinding StringFormat="{}{0}  {1}">
                                <Binding Path="ElementTypeCode" />
                                <Binding Path="Description" />
                            </MultiBinding>
                        </TextBlock.Text>
                    </TextBlock>
                </CheckBox.Content>
            </CheckBox>
        </DataTemplate>
    </telerik:RadListBox.ItemTemplate>
</telerik:RadListBox>

Is this a known bug or am I missing something?

Thanks in advance,
Steve



Steve
Top achievements
Rank 1
 answered on 23 Jul 2013
1 answer
168 views
I have the following XML generated by the SaveLayout method:

<?xml version="1.0" encoding="utf-8" ?>
- <RadDocking>
- <SplitContainers>
- <RadSplitContainer Dock="DockedLeft" Width="200">
- <Items>
- <RadPaneGroup SelectedIndex="0">
- <Items>
<RadPane IsDockable="True" Header="Left" CanDockInDocumentHost="False" />
</Items>
</RadPaneGroup>
</Items>
</RadSplitContainer>
- <RadSplitContainer Dock="DockedRight" Width="200">
- <Items>
- <RadPaneGroup SelectedIndex="0">
- <Items>
<RadPane IsDockable="True" Header="Right" CanDockInDocumentHost="False" />
</Items>
</RadPaneGroup>
</Items>
</RadSplitContainer>
- <RadMainSplitContainerExt SerializationTag="RadSplitContainer" Dock="DockedLeft">
- <Items>
- <RadPaneGroup SelectedIndex="0">
- <Items>
<RadPaneExt SerializationTag="RadPane" IsDockable="True" Header="Pane" CanUserPin="False" CanDockInDocumentHost="False" />
</Items>
</RadPaneGroup>
- <RadPaneGroup SelectedIndex="0">
- <Items>
<RadPaneExt SerializationTag="RadPane" IsDockable="True" Header="Pane" CanUserPin="False" CanDockInDocumentHost="False" />
</Items>
</RadPaneGroup>
</Items>
</RadMainSplitContainerExt>
</SplitContainers>
</RadDocking>

When I execute the LoadLayout method with this XML, I receive this exception:

Specified argument was out of the range of valid values.
Parameter name: elementTypeName

Any help would be appreciated - thanks.
Vladi
Telerik team
 answered on 23 Jul 2013
1 answer
143 views
Hi, 

Does the Timeline control support multi-grouping, for instance I havea Group 1 when expanded it displays child groups and when child groups are expanded the related events are then displayed.

Thanks
Tsvetie
Telerik team
 answered on 23 Jul 2013
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
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Bohdan
Top achievements
Rank 3
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Elliot
Top achievements
Rank 1
Iron
Iron
Iron
Sunil
Top achievements
Rank 1
Cynthia
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?