I have a data bound grid that has the AllowSearchRow = True
And, I have the AllowSearching Property set to true on a number of columns.
But the Search in Columns Dropdown does not contain the checked list box - it's empty... actually it doesn't even drop down!
What do I need to do to get the Master Template checked list box of columns to appear?
Hi All,
How to save cell value to table in database ? just like radgridview even thought we have to iterate all rows.
Thanks in advance
Hello,
Please my attached screenshot.
When I reduce the width of my ribbonform, the captions of the buttons in the ribbongroup will be collapsed at first, and then the buttons will be replaced by a dropdown button for the group. The button without caption looks weird, specially for the button "image before text".
How can I make the button to be full collapsed or full displayed ?
I've tried CollapsePriority in ribbonbargroup, it doesn't work as I would like.
Thanks in advance.
Hello,
I'm contacting you because I would like help. I created a CustomEditor that inherits BaseGridEditor. I also created a CustomElement that inherits from LightVisualElement. In this element, I have a DockLayoutPanel which contains on the left a RadDropDownListElement, on the right a RadButtonElement and the rest of the space contains a RadMaskedEditBoxEditorElement. The DropDownListElement contains 2 items.
The problem is that when I edit the cell, my CustomElement appears but the DropDownListElement is not resized.
If I replace the Dock panel with a StackLayoutElement it's ok but the stacklayoutpanel's width is divided into 3 equal parts.
How to use DockLayoutPanel and autosize?
Thank you
Hi,
I'm currently new to Telerik, which my company used in the past. One of my first task is to upgrade and copy a project by manually rewriting the files to avoid publishing issues. I came across an error which I can't seem to find the solution. It appears that Pdf class is no longer under Telerik.Windows. I see that there's a Telerik.Pdf now but I can't seem to figure out what to use to make my project error-free. Can anyone help me with this?
Visual Studio Error at the beginning of my form:
using Telerik.Windows.Pdf.Documents.Fixed.Model.Navigation;
Severity: Error, Code: CS0234, Description: The type or namespace name 'Pdf' does
not exist in the namespace 'Telerik.Windows' (are you missing an assembly
reference?), Project: Label Printing PVC, File:C:\Users\Lily\Documents\Visual Studio
2017\Projects\Label Printing PVC\Label Printing PVC\APrintLabelSystemProdGroupNew.cs, Line 10, Suppression State: Active
I'm trying to alter a datetime column in my radgridview object.
I need it to be shown as followed:
<Year Quarter of year>
For example the dateTime value of" '28/5/2012' shold be shown as: '2012 Q2'.
I undetstand that i need to changed it with a custmize FormatProvider and also to edit the values of the cells in radgridView1_CellFormating.
I also declared the custmize FormatProvider.
But how do I connect that formatProvider to that specific dateTime column ?
Thanks!
Convert radGridView column after binding to a Hyperlink?
How can I do this? When I converted to a radGridView the same type conversion gave errors on compile.
With DataGridView control I was able to access a cell and change it to a hyperlink
using very similar code to this:
01.
void
dataGridView1_DataBindingComplete(
object
sender, DataGridViewBindingCompleteEventArgs e)
02.
{
03.
foreach
(DataGridViewRow r
in
dataGridView1.Rows)
04.
{
05.
if
(System.Uri.IsWellFormedUriString(r.Cells[
"Contact"
].Value.ToString(), UriKind.Absolute))
06.
{
07.
r.Cells[
"Contact"
] =
new
DataGridViewLinkCell();
08.
// Note that if I want a different link colour for example it must go here
09.
DataGridViewLinkCell c = r.Cells[
"Contact"
]
as
DataGridViewLinkCell;
10.
c.LinkColor = Color.Green;
11.
}
12.
}
13.
}