Hi,
how to set styling (font size, color etc) on a value cell to be exactly the same as the cell that represents column header that value cell belongs to?

I'm able to save a RadGridView's properties(filters and layout) to XML and I store that XML in a SQL table(not a file).
However how do I apply the XML from SQL back to the grids layout? I can apply the layout when in file format but I'm not smart enough to figure out how to apply when in SQL format.
Again any help would be appreciated.
Brent


string sTABS = "select tabid, tabname from tables";dtTable = GetData(sTABS); //Procedure to get the data back as a datatableGridViewComboBoxColumn tabcol = new GridViewComboBoxColumn();tabcol.DropDownStyle = RadDropDownStyle.DropDownList;tabcol.HeaderText = "Table";tabcol.FieldName = "TABID";tabcol.DataSource = dtTable;tabcol.DisplayMember = "TABNAME";tabcol.ValueMember = "TABID";tabcol.Width = 150;gvSetup.Columns.Add(tabcol);string sCOLS = "Select TVID, COLNAME From Cols";dtCols = GetData(sCOLS); //Procedure to get the data back as a datatableGridViewComboBoxColumn col = new GridViewComboBoxColumn();col.DropDownStyle = RadDropDownStyle.DropDownList;col.HeaderText = "Columns";col.FieldName = "TVID";col.DataSource = dtCols;col.DisplayMember = "COLNAME";col.ValueMember = "TVID";col.Width = 150;gvSetup.Columns.Add(col);
Hi,
I format gridview cell GridViewDecimalColumn with FormatString : {0:0,0.00}
and :
private void gvPart_EditorRequired(object sender, EditorRequiredEventArgs e)
{
if (e.EditorType == typeof(GridSpinEditor)
&& (gvPart.CurrentCell.ColumnInfo.FieldName == "Cost" || gvPart.CurrentCell.ColumnInfo.FieldName == "List"))
{
e.EditorType = typeof(CurrencyEditor);
}
}
But when i tab into cell. this is problem:
https://www.screencast.com/t/sKnDuLLkH
this is i expect:
https://www.screencast.com/t/RNwqwxUhDwCc
Can i move the cursor to the end when i focus to the cell ?
And when i input with this format with value 2.99 , it will display : 02.99. Can it make it only 2.99 ?

Hi,
I have a GridView with a child template (X) and another child template (Y)
into the child template (X) and have a decimal column (C) in (Y).
I want to SUM the decimal column (C) in (Y) into a cell of its parent row in (X).
Please attach an example
Hello,
We begins to use a TimeLineView scheduler grouped by resources with Progress OpenEdge 11.7..
It is possible to display an hours bar on the top under the days.
Regards
Chistian

Hello Telerik,
When I set the value of a RadTimePicker with a DateTime which is not on the current day, it is not possible to edit the time with the control anymore ?
I'm using the last release (2017.3.912.40).

Hi,
I'm using a RadApplicationMenu in my project at the moment, and it's working great with the theme applied. However, I've been asked if there's any way to make the dropdown activate when you mouseover it, rather than when you click it. Obviously I can write a mouseover event for it, but I don't know if it's possible to trigger the menu from this event?
Any help you could provide would be appreciated.
Thanks,
-Alexis
