Telerik Forums
UI for WPF Forum
3 answers
244 views
Hi,

Is it possible to add a new row on the keydown event and not lose focus in the cell the event was trapped in.  I know I can use gridView.BeginInsert(), but this causes focus to be lost from the cell that was being edited.  Specifically, we are trying to have an empty row, begin adding data to that row, while we are adding data to that row (only on the first keydown event of that row) we want a new (empty) row to appear and still have focus on the original row (cell) so we can continue adding data.

Also, on a related note, is adding an object to our ItemsSource bound collection the only way to have an empty last row in the GridView?

Thanks,

Mike
Nedyalko Nikolov
Telerik team
 answered on 19 Sep 2011
1 answer
111 views
Preferably through c# code as opposed to markup.

Thanks,

Anders, Denmark

PS: I have seen http://www.telerik.com/community/forums/wpf/docking/radpane-scrollbars.aspx but the appearance is standard windows and 'sticks out' compared to the generel, telerik-based layout of my application.
Konstantina
Telerik team
 answered on 19 Sep 2011
2 answers
285 views
Hello,

Im just trying to get a color background when I click on any radmenuitem.

I need to put it on app.xaml to do it general for all my menuitem controls.

Something like:
<Style x:Key="MenuItemOnClickColor" TargetType="{x:Type telerik:RadMenuItem}">
    <Style.Triggers>
        <Trigger Property="?????????">
            <Setter Property="Background" Value="Red" />
        </Trigger>
    </Style.Triggers>
</Style>

Thanks for your help.
Regards.

Konstantina
Telerik team
 answered on 19 Sep 2011
1 answer
373 views
Here is my code, but it could not work.
I want to show the detail row only for "Leaf" node, but not "Node" node. However, it hide everything.

<Window x:Class="TeleTree.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
        mc:Ignorable="d" 
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <telerik:RadTreeListView x:Name="radTreeListView" AutoGenerateColumns="False" IsReadOnly="True">
            
            <telerik:RadTreeListView.ChildTableDefinitions>
                <telerik:TreeListViewTableDefinition ItemsSource="{Binding Children}" />
            </telerik:RadTreeListView.ChildTableDefinitions>
            
            <telerik:RadTreeListView.Columns>
                <telerik:GridViewToggleRowDetailsColumn/>
                <telerik:GridViewDataColumn  DataMemberBinding="{Binding Name}" Header="Name" Width="100"/>
            </telerik:RadTreeListView.Columns>
            
            <telerik:RadTreeListView.RowDetailsTemplate>
                <DataTemplate>
                    <Grid x:Name="DetailGrid">
                        <StackPanel Orientation="Horizontal" Margin="0" Visibility="Collapsed">
                            <TextBlock Text="Type:"/>
                            <TextBox Text="{Binding Type}"/>
                        </StackPanel>
                    </Grid>
                    <DataTemplate.Triggers>
                        <DataTrigger Binding="{Binding Type}" Value="Leaf">
                            <Setter TargetName="DetailGrid" Property="Visibility" Value="Visible" />
                        </DataTrigger>
                    </DataTemplate.Triggers>
                </DataTemplate>
            </telerik:RadTreeListView.RowDetailsTemplate>
        </telerik:RadTreeListView>
    </Grid>
</Window>


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
 
namespace TeleTree
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            this.radTreeListView.ItemsSource = DataService.GetData();
        }
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections.ObjectModel;
 
namespace TeleTree
{
    public class Node
    {
        public List<Node> Children = new List<Node>();
        public string Name;
        public string Type;
        
    }
 
    public class DataService
    {
        public static ObservableCollection<Node> GetData()
        {
            ObservableCollection<Node> list = new ObservableCollection<Node>();
 
            Node node1 = new Node()
            {
                Name = "Node1",
                Type = "Node"                
            };
 
            Node node1_1 = new Node()
            {
                Name = "Node1_1",
                Type = "Leaf"
            };
 
            Node node2 = new Node()
            {
                Name = "Node2",
                Type = "Node"
            };
 
            Node node2_2 = new Node()
            {
                Name = "Node2_2",
                Type = "Leaf"
            };
 
            node1.Children.Add(node1_1);
            node2.Children.Add(node2_2);
            list.Add(node1);
            list.Add(node2);
            return list;
        }
    }
}

Maya
Telerik team
 answered on 19 Sep 2011
7 answers
510 views
Hi Telerik,

I've a trouble..

I set Maximum to 999999 and IsInteger = true which means value can't be more than 999,999 or 6 digits. But when I key in 999999 in my control it round-up and show 1,000,000 ( another i.e. key in 999994 , it round down to 999990 )
How to turn off automatic round function ?

this is my XAML
<telerik:GridViewDataColumn ValidatesOnDataErrors="None" Width="250" DataMemberBinding="{Binding MinAmt}" Header="Minimum Amount" 
                        HeaderTextAlignment="Center" TextAlignment="Right">
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding MinAmt, StringFormat='0,0'}" TextAlignment="Right" 
                    x:Name
="MinAmtTextBlock" Loaded="MinAmtTextBlock_Loaded" />
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
                  <telerik:RadNumericUpDown  Maximum="999999" UpdateValueEvent="PropertyChanged" 
                                            ShowButtons="False" PreviewKeyDown="MinAmt_PreviewKeyDown"
        Value="{Binding Amount, Mode=TwoWay, UpdateSourceTrigger=Explicit}" 
                                            x:Name="MinAmt" Loaded="MinAmt_Loaded" />
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>

please give me some advice
Regard,
SweNz
Pana
Telerik team
 answered on 19 Sep 2011
3 answers
179 views
First something about RadGridView:
When I move the mouse over a RadGridView and I'm using my MouseWheel to scroll this works at once.
It works even when I had focused an other control, let's say a TextBox.

But...
Doing the same with a RadMap, nothing happens. I have to click on the map først, and then I can use the MouseWheel to scroll.
Is there a way to trigger the scrolling without clicking first?
Andrey
Telerik team
 answered on 19 Sep 2011
1 answer
70 views
Hi,

Is it possible to change the text of AppointmentNavigationButtons?
All other labels are ok (in german language), only the "Prev Appointment" button is in english language.


next appointment is ok:


kindly regards.
Stefan


Pana
Telerik team
 answered on 19 Sep 2011
2 answers
107 views
Hi there,

Just a quick question regarding the PersistenceFramework. I haven't used the feature yet but I have a scenario and I would like to know how the Framework will react to it.

Suppose I have TreeView filled dynamically from a database with various nodes and child nodes, say for example categories with sub products. If I save the properties of the treeview as is, and then later reload the treeview but its nodes have changed / been updated with newer products etc, will the persistence framework throw an error when reloaded with older persistence settings?

Thanks for your time and I hope I've explained myself adequately.
Robert
Top achievements
Rank 1
 answered on 17 Sep 2011
3 answers
133 views
The task is to change the layout of elements in the component (like iGoogle dashboard).
To do that, you need to override the TileViewPanel methods. 
The field of that type is not available in the TileView instance, but can be found in the visual tree.

Is there and option of substituting the TileViewPanel instance in the TileView visual tree for a custom class:
class MyTileViewPanel: TileViewPanel
{
// my methods
}
Zarko
Telerik team
 answered on 17 Sep 2011
4 answers
204 views
I tried to develop a touch supported DateTimePicker, however after the calender is launched, no touch is active... how to intercept the touch event on the calender?
Boyan
Telerik team
 answered on 17 Sep 2011
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?