Telerik Forums
UI for WPF Forum
1 answer
98 views

Drag and Drop

When I using flow direction right to left on the tree view the drag and drop act strange

Someone know this problem?

Best Regards

Ehud

 

Viktor Tsvetkov
Telerik team
 answered on 01 Jul 2010
6 answers
247 views
I wish to get the group aggregate.
Basically the count of items in each group, but I do not wish to display the data as group under grid View.


Xaria D
Top achievements
Rank 1
 answered on 01 Jul 2010
5 answers
644 views
I am writing an application similar to the Sales Dashboard example. In the example,  only simple polygons are being displayed, is it possible to use MultiPolygons with the RadMap?
Andrey
Telerik team
 answered on 30 Jun 2010
1 answer
130 views
hi,

I have two docked panes (RadGridView) and I would like to drag itens from one grid to another. It works fine if they are side by side, but when I put them in the same pane (as tabbed panes) I cant change from one pane to another while dragging. Is there a way to change the current tab when dragging just by pointing the tab you want to drop the row?

I am also facing this problem: http://www.telerik.com/community/forums/wpf/draganddrop/drag-and-drop-between-two-docking-panes.aspx I cant make the drag and drop work on floating and unpinned panes. Is there a workaround? Thank you.
Kiril Stanoev
Telerik team
 answered on 30 Jun 2010
5 answers
285 views
How should I do it? I'd appreciate if someone can send a code sample.

Thanks.
Yavor Georgiev
Telerik team
 answered on 30 Jun 2010
1 answer
103 views
Hi, I have a question about this new control.

I have tried out the demo and I was wondering is it possible to edit the cells ? (I can not do that in the demo).

But the beta looks good and I am looking forward to seeing the final product.

Best regards
Kristján.
Veselin Vasilev
Telerik team
 answered on 30 Jun 2010
10 answers
251 views
I am running VS2010 RC 1 with the 2010.1 version of RadControls. I have installed the WPF, SIlverlight and ASP.net AJax controls. I now have the Telerik Menu option in VS and create a Telerik WPF project. There is no Telerik controls Toolbox? Also, when I right click on any of the Telerik control references, they all show a runtime version of 2.0.50727? Where are the version 4 controls?  Also - is there a layout designer toolbar for WPF in VS2010? I don't see that option under Tools-Customize
Milan
Telerik team
 answered on 30 Jun 2010
2 answers
143 views
FlowDirection="RightToLeft" applied for RadWindow distorts its normal behaviour:
the window, if moved or resized horizontally, moves or resizes to the opposite direction in very strange mode.

[A simple project for demostration of the those behaviours attached to this message.]
There is not possibility to add project rar file, so I add the sources here.

App.xaml

<Application x:Class="MDIWindows.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    StartupUri="Window1.xaml">
    <Application.Resources>         
    </Application.Resources>
</Application>

Window1

<Window x:Class="MDIWindows.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="198" Width="300">
    <StackPanel>
        <Button Content="Open" Click="OnOpenClick" Height="40" />
        <Button Content="BringToFront" Click="OnBringToFrontClick" Height="40" />
    </StackPanel>
</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;
using Telerik.Windows.Controls;
using WpfApplication1;

namespace MDIWindows
{
 /// <summary>
 /// Interaction logic for Window1.xaml
 /// </summary>
 public partial class Window1 : Window
 {
  Example window;
  public Window1( )
  {
   InitializeComponent();
  }

  private void OnOpenClick( object sender, RoutedEventArgs e )
  {
   if( window == null )
   {
    window = new Example();

    window.Width = 200;
    window.Height = 200;
    window.Owner = this;
   }

   window.Show();
  }

  private void OnBringToFrontClick( object sender, RoutedEventArgs e )
  {
   if( window == null )
    window.BringToFront();
  }
 }
}


Example

<telerik:RadWindow x:Class="WpfApplication1.Example"
            
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
                            
        x:Name="window" Header="ABC" WindowStartupLocation="CenterScreen" FlowDirection="RightToLeft" Width="400" Height="244">
   
</telerik:RadWindow>


using System;
using System.Windows;
using System.Windows.Media;
using Telerik.Windows.Controls;

using WindowStartupLocation = System.Windows.WindowStartupLocation;
using WindowState = System.Windows.WindowState;

namespace WpfApplication1
{
 public partial class Example : Telerik.Windows.Controls.RadWindow
 {
  public Example( )
  {
   InitializeComponent();
  }
 }
}

 









Miroslav Nedyalkov
Telerik team
 answered on 30 Jun 2010
1 answer
129 views
Hi There

I cant find any examples of how to set focus on a selected row.

Say I have a grid with 5000 records and in code I set the selecteditem. I then want the grid to show that item in focus on the screen (scroll to where that item is located).

How would this be possible?

Regards

Nick
Milan
Telerik team
 answered on 30 Jun 2010
6 answers
146 views
hello,

I would like to know if it is possible to detect a double-click on the row "Click here to add a new item"
to prevent an exception in radGridView1_MouseDoubleClick

best regards
thibaut
Thibaut
Top achievements
Rank 1
 answered on 29 Jun 2010
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
ProgressBar
Sparkline
LayoutControl
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
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?