Does the Telerik PropertyGrid control not support the FolderNameEditor? The control is showing a textbox and not the ellipsis button that displays a dialog.
<DisplayName("File Archive"), Editor(GetType(FolderNameEditor), GetType(UITypeEditor))>Property ArchiveLocation As String

Hello,
For a developpment in my company, I need to print a list of data document by date with new header and new grid when there is new date
It's important : No need grouping
When I'm printing a test page, First Page is OK but not next page, There is header of grid but not data of grid by date
No bug in my code, just no data in printing preview
Printing Page 1
Printing Page 3
See my demo test project in file-attach => button of test is right-top (small button)
Link of downloading : TelerikWinFormsApp1
Do you know this issue ?
if yes, how solve it ?

Hi There,
I have a trackbar on which a number of (slow) actions are performed after the value has changed/changes.
Now, the value_changed event is fired even if I have my mouse down. Is there a possibility that the actual value changes áfter I release my mousebutton so the trackbar responds much quicker.
Kind regards
Victor

Hello folks - I am attempting to make a project similar to the "theatre" demo that is part of the Winform Demos for Map / ESRI Shapefiles. I have extracted all the code from the ExamplesCSVS2010 project file, and made a local copy of the theatre seating data. It appears to be loading the ESRI files properly, I can inspect the map object and it appears to have all the objects in it, but I just do not SEE anything on my form.
Is there a working standalone example anywhere? Everything I have found on the forums is for outdated Silverlight, nothing for winform. Seems like everything is there, but just missing this piece. Any ideas? Happy to post my current project, etc.for review, if that helps at all.

I don't see an event for when a mouse-click occurs on a radPageViewStripItem. I need to know when a user clicks on this element regardless if the pageview has been changed. (see screenshot)
I have an Element that Inherits from LightVisualElement. In CreateChildElements I add three controls - StackLayoutPanel, Image and Label - however the Size is always 0 which causes problems in another controller where I try to stack several Elements together.
Why is the Size 0?
When is the Size initialized?
protected override void CreateChildElements() { base.CreateChildElements(); mainPanel = new StackLayoutPanel(); mainPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; checkBox = new LightVisualElement(); checkBox.DrawText = false; checkBox.ImageLayout = System.Windows.Forms.ImageLayout.Center; checkBox.ShouldHandleMouseInput = false; checkBox.NotifyParentOnMouseInput = true; mainPanel.Children.Add(checkBox); label = new RIOLabelElement(); label.TextAlignment = ContentAlignment.TopCenter; label.Font = new System.Drawing.Font("Segoe UI", 8, FontStyle.Italic, GraphicsUnit.Point); label.ShouldHandleMouseInput = false; label.NotifyParentOnMouseInput = true; mainPanel.Children.Add(label); this.Children.Add(mainPanel); }
I am dynamically adding tabs to a pageview. How can I add subtabs?
When I click on a tab, I need the tabs within the top tab to show.
Here is the code I have. The first set of tabs work. Can't figure how to add child tabs
//create a tab for each lineDataTable dt = GetLines();if (dt.Rows.Count > 0){ foreach (DataRow row in dt.Rows) { RadPageViewPage newLine = new RadPageViewPage(); newLine.Text = row["DEPARTMENT_DESCRIPTION"].ToString(); pvMain.Pages.Add(newLine); //get the list of what runs on each line (by Department_id) DataTable dtLines = GetLineDepartments(Convert.ToInt16(row["DEPARTMENT_ID"].ToString())); if (dtLines.Rows.Count > 0) { foreach (DataRow rowDept in dtLines.Rows) { // add depts tabs to the line RadPageViewPage newDept = new RadPageViewPage(); newDept.Text = rowDept["LINE_DESCRIPTION"].ToString(); //newLine.Controls.Add(newDept); //how do I add to the newline RadPageViewPage newLine. } } }}
Hi
How I have to add new row on cell end edit. I have 10 columns in the gridview, after particular cell end edit and pressing tab key i should add a new row.
I tried ProcessTab Key and it is not working.
Please let me know how i can achieve this.
Thanks in advance.
Regards
Gopinath
Hi is there a way to add buttons near a collapse button in ribbon bar (see picture for more detail)?
Thank you :)

