Do you have any samples using Bot Framework 4.0? I am trying to make a sample rendering an adaptive card.
Thanks -Tim

Hi.
I've followed the steps in this how-to to set up a hierarchical grid:
http://docs.telerik.com/devtools/winforms/gridview/hierarchical-grid/object-relational-hierarchy-mode
Now I want to generate the columns in the child template myself to avoid displaying internal fields like database IDs etc..
Even in your example in the 'Manually generating hierarchy mode' section you add columns in the CreateChildTemplate() method, but never turn off the autogenerated columns. So, as in the figure shown, you just add the columns additionally to the autogenerated columns.
If I set the template.AutoGenerateColumns = False, then the database relation somehow gets broken. However, the subdatasets won't be shown after clicking the expand button.
Regards,
Bernhard

Hi Admins.
I have a requirement to Load/Populate Ondemand hierarchical DataGrid.(Detail grid should be shown on RowClick)
I have searched the forum but every example i found is building hierarchical gridview by using the DataSet.
But i want to do this by Using DataTable / Querying the Database.
How can i achieve the above stated requirement.
Please provide any example.
Thank you

Dear support team, I have written an application with 10 forms and need to manually copy code and ressources from RadForm (debug version) to RadPageViewPage (release) and tweak few lines each time... As you will probably agree, it's quite painful and hard to maintain. Do you support the integration of normal RadForm in a RadPageView container ? Or Do you have other tip for maintaining this, knowing that it is impossible to edit a derivated RadPageViewPage in Visual Studio 2008 ? Best regards,Fabien.how can I do to create a column that is a GridViewTextBoxColumn with a button inside?
Like GridViewColumnBrowse, but I just need the Click event, I don't need the list.
Is it possible?

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!
