Is there a way to expand a dropdownlist item when the list is open and a user hovers their cursor over an item? I have a RadDropDownList with some list items that have long text values that don't fit in the width of the dropdownlist. Ideally, I'd like to make it so they can see the entire list item string when they hover over the list item.
Thanks in advance for your help!
I'm using VS 2010 C# Winform. I was wanting to know if its possible to scroll to a specific row in a hierarchical grid like you can with the parent grid?
Example: this.gridview.TableElement.ScrollToRow(3);
Hello
I need to change back color of GridTextBoxColumn while editing in RadGridView control.
My application have two themes BLACK and WHITE.
For BLACK theme textcolor is white editing GridTextBoxColumn the backcolor is white and textcolor is same so I'm unable see the typed text.
So far I have tried below approach
GridViewDataRowInfo row = new GridViewDataRowInfo(this.dataGridView1.MasterView);
row.Cells[0].Value = "";
row.Cells[1].Value = "";
row.Cells[0].Style.CustomizeFill = true;
row.Cells[0].Style.DrawFill = true;
row.Cells[0].Style.BackColor = ColorTranslator.FromHtml("41,44,41");
dataGridView1.Rows.Add(row);
Where-
row.Cells[0] is GridTextBoxColumn
row.Cells[1] is GridCommandColumn
but the changes are not affecting white editing text.
Please help.
Thanks in advance.
How do I change the Font and Color of the text of a ChartView's title?
Laura
Hi All -
I have the following bit of code which works fine....I'm formatting a column based on the data in another column.
The problem I have arises when I try to sort on 'Display1' column by clicking the header. If I try to do when the grid is first populated, it doesn't sort. If I've scrolled thru the data once, then everything is fine.
I understand why this happens: Since the RowFormatting method is not called until the row in question is displayed, the 'Display1' values have not yet been populated in my non-visible rows.
So my question is this: What is the best way to get 'Display1' to sort properly? Do I simulate scrolling thru the grid to force RowFormatting to do its work? Or is there a better way?
Thanks as always,
Hugh
private
void
MasterTemplate_RowFormatting(
object
sender, RowFormattingEventArgs e)
{
if
(e.RowElement.RowInfo.Cells[
"Data1"
] !=
null
)
{
if
((String)e.RowElement.RowInfo.Cells[
"Data1"
].Value ==
""
)
e.RowElement.RowInfo.Cells[
"Display1"
].Value =
""
;
else
e.RowElement.RowInfo.Cells[
"Display1"
].Value =
FormatData(e.RowElement.RowInfo.Cells[
"Data1"
].Value);
}
}
Hello,
How can I set Node Text Multiline?
Is there any worktrought?
thanks
Hi I have a Rad Grid View that I am exporting to excel using the code below. This works fine, but I would like the code to export the grouped data so that excel sees it as grouped data rather than static cells. Is there a way to achieve this?
Thanks in advance.
private
void
button4_Click(
object
sender, EventArgs e)
{
ExportToExcelML exporter =
new
ExportToExcelML(
this
.radGridView1);
exporter.HiddenColumnOption = Telerik.WinControls.UI.Export.HiddenOption.DoNotExport;
exporter.ExportVisualSettings =
true
;
exporter.SheetName =
"Films"
;
string
fileName =
"C:\\ExportedData.xls"
;
exporter.RunExport(fileName);
}