Hi support team,
I'm trying to set the default value for a RadComboBoxColumn (inside a RadGridView) when a new row is created but I cannot figure out how to do it.
I'm using Telerik 2018.2.515.40
Hi,
I'm Using radGridView to load data from Datatable;
DataTable is populated from the Database;
2 Columns are added at design time;
If i Use radGridView1.AutoGenerateColumns = true;
then it shows 4 Columns on populating data.
and if i Use radGridView1.AutoGenerateColumns = false;
then it Shows 2 columns but populated with Empty Data Rows
01.
radGridView1.MasterTemplate.AutoGenerateColumns =
false
;
02.
03.
DataTable dt =
new
DataTable();
04.
string
query =
"SELECT a.ITEM_NAME , ITEM_CODE FROM items a "
;
05.
OracleCommand cmd =
new
OracleCommand(query, DataConn.Conn);
06.
OracleDataAdapter da =
new
OracleDataAdapter(query, DataConn.Conn);
07.
da.Fill(dt);
08.
09.
radGridView1.MasterTemplate.DataSource = dt;
Hi
I have a data grid and I am wondering if the column header text can be vertical ? If so, how do you make the text vertical?
Within the grid I have columns with Y and N, I want to make the background of the cell Green if Y and Red if N - what do I need to do to achieve this?
Neil
Hello,
some of our users complains about the fact that they need to click twice to edit a value in a PropertyGridDropDownListEditor.
The first click generate and start the editor, the second to open the list.
Is there a way to automatically open the list after the editor has been initialized?
Thanks!
Hello,
I recently updated to R3 2019.
In this update the Breadcrumb got several updates.
One of the updates is the text editing mechanism, but for my application, this is an unwanted option. How can I disable this option?
Grtz Patrick
Hello
This works ok :
Dim obj1 As New ExpressionFormattingObject("MyCondition1", "MYDATE IS NULL", True)
obj1.CellBackColor = Color.YellowGreen
PeriodosGridView.Columns("MYDATE").ConditionalFormattingObjectList.Add(obj1)
But y need create ExpressionFormattingObject for detect when a value is greater than today
Is possible?
Thanks
Hi,
I want to remove the top four buttons from Image Editor control. How can do I do that? I found one thread for "UI for WPF", but the properties mentioned in that thread, like IsOpenButtonVisible etc are not there in my latest downloaded version of control. Are those properties specific to WPF? Please let me know how to remove those buttons in WinForm.
Thanks!
Ruturaaj.
Hi, I have two questions that need help regarding effects on listview
Question one: I tried changing the border color of active subitem using events: cellformating, VisualItemFormatting but I still haven't found a way to enable it.
Question two: How can I stop highlight current listviewitem? I want after running listview code, there will be no more highlighted items.
I have uploaded photos for you to visualize.
Thank you.