Telerik Forums
UI for WinForms Forum
0 answers
115 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
369 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
152 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
270 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
370 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.6K+ 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
168 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
120 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
5 answers
227 views
Hi,

Can I resize the scrollbar in RadPanorama so that it shows bigger ?

REgards,
Daniel
George
Telerik team
 answered on 01 May 2014
2 answers
126 views
Hi,

I am using the hierarchical Gridview as some sort of navigation tree.
Typically, the Grid is positioned on the left pane, the right pane contains detail data an more.

When the user selects a row, from any level in the grid, extra data is loaded and displayed on the right pane.
Mostly, the detail pane contains a lot more data, than is displayed in the navigation grid. Depending on the network speed, this can take a bit of time.

My problem is that the grid, used as a data navigation aid, still accepts user interaction while detail data is being retrieved from the database.

Now I have to options:
1. fetch detail data in a separate thread, and abort when the user selects another row.
2. keep the grid (navigation aid) from processing user interaction while detail data is loading.

My question is,
can user interaction with the grid be placed on the same thread, so that it has to wait for the detail data being loaded?

Thanks.
Dimitar
Telerik team
 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)
Form
Chart (obsolete as of Q1 2013)
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
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?