Hello,
is it possible to modify the presentation of the dettings in teh WebCam Settings dialog? My client would like to have the settings shown in a collapsible panel on the form, they do not like the dialog window. What options do we have for overriding this UI?
thanks!
-David
I need to apply filters programaticaly to one grid column. This filters are added or removed when user clicks some checkboxes, when checkbox is clicked filter is added or removed.
All of this was working ok, but now I need multiple filters for same column (propertyName).
Is there any property to use as Tag, Id or name for the filter?
Hi.
Is there a way to horizontally align a child GridViewTemplate so that the (BestFitColumns) columns are not on the left but equally distant from left and right, so Center?
Edit:
Jure
Guys please check an issue with Reports Filter area split bar. The problem is when you close the filter area with the split bar arrow button, then the dragable symbol stays over the expand button and it is impossible to open it again.
https://demos.telerik.com/reporting/dashboard
I have a winform, that extends pretty far below the actual size of the screen. I have AutoScroll set to true. I can see the scroll bar in the designer, but can not move it so I can get to controls are that are off the screen. I am not sure what I can do here. At this time, i can't not create a reproducible sample app of this happening. I am hoping someone has seen this before and had a possible fix for this.
Thank You.
Dear Telerik Team,
We noticed an issue with a selection and pinned/unpinned columns in Telerik RadGridView.
Here is a detailed description of the issue:
There are several columns in our Telerik RadGridView.
The first two columns are pinned, the rest is unpinned.
When we use the SHIFT/CTRL button on a keyboard to select multiple rows and click on a concrete cell in the last selected row (the cell is in the 'Total' column - unpinned column), everything is right with the selection (attachment: Screenshot_1).
On the other hand, when we select a different concrete cell in the last selected row (the cell is in the 'Name' column - pinned column), the selection becomes wrong (attachment: Screenshot_2).
We think there is a difference in behavior between pinned and unpinned columns during selection.
Do you have any useful knowledge about the described issue?
Thank you in advance for your response.
Best regards.
Hi,
I have two mc comboboxes in my form. Making a selection on the first one activates a composite filter on the second one so the latter will list fewer items. That works fine when the user clicks on its down arrow to display the now filtered listing. But when the user starts typing on its textbox editor, the list goes away instead of doing a further search or filtering.
Is this a bug or by design?
Thank you,
Sid
Hi there,
I have a UserControl which I load into a form.
On this control is a RadGridView.
Unfortunately, the automatic cell resizing does not work.
Only the heading is resized.
Can someone help me?
Thanks Udo
Here is my code to load the UserControl
Dim _objektdaten As New VB_Feuerbeschau.objekte
_objektdaten = CType(Controls("ucObjekte"), objekte)
If _objektdaten Is Nothing Then
_objektdaten = New objekte()
_objektdaten.Name = "ucObjekte"
Me.Controls.Add(_objektdaten)
_objektdaten.Dock = DockStyle.Fill
_objektdaten.BringToFront()
Else
_objektdaten.Dispose()
_objektdaten = Nothing
_objektdaten = New objekte()
_objektdaten.Name = "ucObjekte"
Me.Controls.Add(_objektdaten)
_objektdaten.Dock = DockStyle.Fill
_objektdaten.BringToFront()
'_objektdaten.rgvObjektdaten1.BestFitColumns(BestFitColumnMode.AllCells)
For Each column As GridViewDataColumn In _objektdaten.rgvObjektdaten1.Columns
column.BestFit()
Next
End If