I'm trying out the Hamburger menu, but when I click the 'Hamburger Icon" it begins to expand very slowly. It's not as 'zippy' as in the demo... probably due to the complex control that is within the first menu item.
Anyway, I don't really want it to expand (I have it set to Compact) anyway.
Is there to prevent it from expanding when the 'hamburger icon' is clicked?
Hi again,
I'm new to working with column groups in Telerik.
I wanted to export my grid, but I can't show column group text in the output excel file.
I tried simple usage of exporter:
var excelML = new Telerik.WinControls.UI.Export.ExportToExcelML(grid);
but I don't know how to customize it
Hi all,
a simple question about collapsible panel: how is it possible to have a collapsible panel inside a form which is by expand leads to the form resizing and by collapsing will restore the original size?
This should be like a "classic" "Advanced information" UI element - like copy operation in explored in W10 "More / Less details".
Thanks in advance
Rostislaw
I cannot believe I couldn't find a question about this anywhere... Which usually means I'm missing something extremely simple. I have a RadGridView and I add a column via the following code:
// Generate Status column
GridViewComboBoxColumn Status =
new
GridViewComboBoxColumn();
Status.Name =
"Status"
;
Status.HeaderText =
"Status"
;
Status.FieldName =
"Status"
;
Status.DataSource = ListsMain.Tables[4];
Status.DisplayMember = ListsMain.Tables[4].Columns[
"name"
].Caption;
Status.ValueMember = ListsMain.Tables[4].Columns[
"id"
].Caption;
Status.DisplayMemberSort =
true
;
radgridview_troubletickets.Columns.Add(Status);
I really like the conditional formatting option available in the prebuilt form that the RadGridView offers. However, if I want to put a condition on the GridViewComboBoxColumn I added, the condition is based on the ValueMember. This makes no sense to the user, because the value member is just a key from the database, so the end user would never have any idea what the value member is. There has to be an easy way to base the condition on the text selected in the RadViewComoBoxColumn instead of the value of the cell.
Any advice would be GREATLY appreciated.
Hello,
I have changed the minimum height of the ThumbElement (RadListView.ListViewElement.ViewElement.VScrollBar.ThumbElement.MinSize = New Size(0, 35)) because the button gets too small for me (height) when there are 1000+ items in the box.
This setting of the minimum size works perfectly, but there is one problem:
When scrolling down the slider-button (ThumbElement) all the calculation for the position is done on the "original" size with the result that the slider-button will be drawn over the "down" button. (see attached)
Has anyone a solution to solve this?
Grtz Patrick
Hi all,
my windows from looks very different in W7 and W10. This is a sizable tool window, and I use an anchoring for controls there. Is there a way to get the form look and feel more similar in w7 and w10?
Thx
Rostislaw
ps: my problem is a position of the ok button (on the upper boundary in w10 nad "normal" in w7) and the distance between the text (label) and apply button
I'm usingTelerik.WindControls.UI.RadDropDownButtonElement control for Winforms. When the control renders in a RadRibbonBar I would like to see the button borders appear. What code can have the borders appear when the page is opened by the user because the default is they don't display?
Thank you,
Craig...