Telerik Forums
UI for WinForms Forum
2 answers
210 views
I'm having a issue with the hot tracking of input controls hosted on a WindowsFormsHost in an WPF application.

The situation is a host that has half a dozen RadTextBoxes on it, stacked vertically. We have our own custom theme which hot tracks the mouse movement by changing the border of the text boxes - much in the same way that the Windows 7 theme does, going from grey to blue when the mouse moves over the control.

If I now move my mouse up and down the form, going back and forth over the text boxes, the border colour changes don't always change correctly. It basically seems a little random. There are no issues with any of this functionality if I'm using the controls in a WinForms applications. 

I'm not sure whether this is a WindowsFormsHost problem not catching the hover events properly, or a problem with hosted telerik controls, but any help would be appreciated. 

Thanks
Jason
Top achievements
Rank 1
 answered on 06 May 2014
7 answers
192 views
Hi,

I use Dock control for MDI Child Form. When i add new a Child Form, it is adding to dock but don't focus new document. This has changed after last upgrade.

Thanks your help. 

Best Regard
Stefan
Telerik team
 answered on 05 May 2014
0 answers
88 views
Hello Telerik
I have a question about radPivotFieldList ,Is it possible to change the text of fields in radPivotFieldList ,I used the code bellow but it didnt work

radPivotFieldList1.FieldsControl.Nodes[0].RootNode.Text="my text0";
radPivotFieldList1.FieldsControl.Nodes[1].RootNode.Text="my text1";
Mahsan
Top achievements
Rank 1
 asked on 05 May 2014
7 answers
278 views
When I subscribe to the tooltip needed event of radspineditor, I find that the tool-tip only appears when mouse hovers over the arrow buttons of radspineditor element. How can I make sure that the same tool-tip also displays when mouse is over the text box portion of radspineditor?

I am using 2008 Q1 SP1 version.

Thanks
Sunil
Jeffrey
Top achievements
Rank 1
 answered on 02 May 2014
6 answers
115 views
Hello:
I have a problem when I want press the key "Alt" + some number.
example: Alt+64 = @
When I press the key "Alt", my textbox lost the focus and I can't place the simbol.
I have in my form a radribbonbar and when I press this key, the focus is placed here.

what's the solution?
thanks
George
Telerik team
 answered on 02 May 2014
1 answer
205 views
Is there a way to build the set of Categories and Items shown in a PropertyGrid at design-time?  I realize that the focus of the PropertyGrid control is to dynamically bind to an object to allow access to changing the object's property values, so this may be outside of the original purpose of the PropertyGrid control.  I really like the look and feel of the PropertyGrid with being able to organize fields by categories and provide custom editors for changing the values, and so I'm looking to be able to setup the PropertyGrid at design-time with my own pre-defined set of Categories, and then add Items under each Category, and databind each Item's value to an object's property.  Similar to how you build the columns of a DataGridView at design-time, and set the "DataPropertyName" that you want that column to be bound to.

It doesn't appear that you can do this directly with the current RadPropertyGrid control, but is there way to get this kind of functionality using RadPropertyGrid, or another Telerik control that would offer this?
Peter
Telerik team
 answered on 02 May 2014
4 answers
326 views

Hello. I have two problems with filtering in RadTreeView control.
1. I add nodes to tree when filtering is enabled.

Code: 

radTreeView1.Filter = "new";
radTreeView1.Nodes.Add( "new Node" );
for ( int i = 0; i < 1000; i++ )
{
   radTreeView1.Nodes.Add( new RadTreeNode( "test" ) );
}

You can see that after this actions scroll does not work correctly (see screenshot 1).

2. Some node is added to tree when filter was enabled.

radTreeView1.Filter = "new";
var node = new RadTreeNode( "test" );
radTreeView1.Nodes.Add( node );
After some actions I must to check if node was added. When node was not added I add it again.
if ( radTreeView1.Nodes.Contains( node ) == false )
{
 radTreeView1.Nodes.Add( new RadTreeNode( "test" ) );
}
 
I  don't know how to check is node is present in tree. When node is filtered it is absent in Nodes.
How can I check that node is present in tree?

Dev3
Top achievements
Rank 1
 answered on 02 May 2014
10 answers
1.5K+ views
Hello,

I am looking for example code that shows how to import, and populate a Grid from Excel data. Is it already somewhere on this forum?

Thanks,

Patrick.
George
Telerik team
 answered on 01 May 2014
1 answer
123 views
I was expecting that calling AddNodeByPath would automatically create the necessary parent nodes similar to how Directory.Create() works.

treeView.AddNodeByPath("General\\Billing\\February\\Report.txt")
treeView.AddNodeByPath("General\\Billing\\March\\Report.txt")
treeView.AddNodeByPath("General\\Billing\\April\\Report.txt")

However, it just seems to add them all to the closest node it could find (if there are no nodes, then a bunch of "Report.txt" will be in the root node).

I have come up with the following to solve this issue, but I'm wondering if there's an easier way?

private RadTreeNodeCollection AddNode(string path)
{
    if (path == String.Empty)
        return treeView.Nodes;
 
    string node = Path.GetFileName(path);
    RadTreeNodeCollection parent = AddNode(Path.GetDirectoryName(path));
 
    if (parent.Contains(node))
        return parent[node].Nodes;
    else
        return parent.Add(node).Nodes;
}

Is this a bug, or is it documented somewhere that AddNodeByPath() doesn't create the necessary parent nodes?
George
Telerik team
 answered on 01 May 2014
1 answer
87 views
Please see my attach files, as long i added new DataPoints into my ChartView my Grid lined become smaller and smaller and i want o set fixed size (please see my 2 screenshots - my current ChartView and the second screenshot - what i want to achieve)
pogy
Top achievements
Rank 1
 answered on 01 May 2014
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?