In the "Demo Application - UI for WinForms Q1 2016 SP1" there is an example of the RadGridView with Row Details.
I'm trying to reproduce this in the OpenEdge programming platform (so need to to make some minor changes) but I don't get it to work!
The latest problem is that it looks like 'DetailsColumn' is not a valid property of the RadGridView (or there is an error in the docs).
The adjusted code is:
method private void RadGridViewDetails_Load( input sender as System.Object, input e as System.EventArgs ):
// TODO: This line of code loads data into the 'nwindDataSet.Employees' table. You can move, or remove it, as needed.
/* this.employeesTableAdapter.Fill(this.northwindDataSet.Employees); */
this-object:radGridView1:ReadOnly = true.
this-object:radGridView1:AllowColumnReorder = false.
this-object:radGridView1:AllowColumnResize = false.
this-object:radGridView1:AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode:Fill.
this-object:radGridView1:AutoExpandGroups = true.
this-object:radGridView1:TableElement:RowHeight = 40.
this-object:radGridView1:GroupDescriptors:Add(new Telerik.WinControls.UI.GridGroupByExpression("City GroupBy City")).
/* this-object:radGridView1:Groups[1][0]:IsCurrent = true. */
this-object:radGridView1:Columns["Photo"]:VisibleInColumnChooser = false.
this-object:radGridView1:Columns["Photo"]:IsVisible = false.
this-object:radGridView1:Columns["Notes"]:WrapText = true.
this-object:radGridView1:Columns["LastName"]:SortOrder = Telerik.WinControls.UI.RadSortOrder:Descending.
this-object:radGridView1:DetailsColumn = this-object:radGridView1:Columns["Notes"].
return.
end method.
The error I get is: Could not locate element 'DetailsColumn' in class Telerik.WinControls.UI.RadGridView
I'm I doeing something wrong here??
Also you notice that I commented this-object:radGridView1:Groups[1][0]:IsCurrent = true.
That's because this is not allowed in OpenEdge? What does this statement mean? Maybe I can transform that so it is allowed in OpenEdge.
What is not clear to me in the example is what code is responsible for adding that DetailsRow?
So what property creates that (default hidden) row that is displayed when I click on a row in the RadGridView
Thanks
Didier

Just researching this component to see if it can do what I want.
I have slightly modified the 'First look' example to see if I can modify it to suit.
From reading the documentation, I should be able to force the connector to attach to a shape on one side , but I cannot get it to work.
As a simple test I tried to add a connection between a member to a Node
Private Sub PopulateWithData() Dim dataXml As XElement = XElement.Load("Organization.xml") For Each element As XElement In dataXml.Elements("Node") Dim node As OrgContainerShape = Me.CreateNode(element, Nothing) node.BaseColor = Me.groupColor(0) Me.RadDiagram1.AddShape(node) currentLayoutSettings.Roots.Add(node) Me.GetSubNodes(element, node, 2) Next'------- Add a new connection as a test ------------------------------- Dim connection As New RadDiagramConnection() connection.ConnectionType = Telerik.Windows.Diagrams.Core.ConnectionType.Polyline Dim parentNode = Me.RadDiagram1.Shapes(0) Dim destNode = Me.RadDiagram1.Shapes(7) connection.Source = parentNode connection.Target = destNode connection.SourceConnectorPosition = "Left" connection.TargetConnectorPosition = "Auto" Me.RadDiagram1.AddConnection(connection) End Sub
But it always connects to the bottom of the shape.
What am I doing wrong? ( I have checked and the shape does have a Left connector)
Many thanks
Rob

Hello everyone,
I tried to use the RadDropdownlist in my our project based on Winform, but when i changed the SelectedIndex there is an issue happened, it changed the TextAlignment to center automatically?
Although i tried many solutions to fix it but i cannot, so please help me to solve this issue :(
Bellow are my code, it happened on two bold lines.
var ddl = control as RadDropDownList;if (ddl != null){ if (!string.IsNullOrWhiteSpace(value)) { var selectedItem = ddl.Items.FirstOrDefault(x => x.Value != null && x.Value.ToString() == value); if (selectedItem != null) { ddl.SelectedItem = selectedItem; } } else { ddl.SelectedIndex = -1; ddl.Text = $"Select {childField.FieldName}"; }}else{ var maskedBox = control as MarsMaskedEditBox; if (maskedBox != null) { maskedBox.Value = value; } else { control.Text = value; }}(Sorry, the title should read "Appointment Changed Event in VB.NET" but I don't seem to be able to change it.)
The RadScheduler has several events:
However, I don't see an AppointmentChanged event or AppointmentEditDialogShown event (or something to let me know that the edit dialog has been closed and I can persist the changes to the database).
Is this by design?
I found in another thread a mention of the RadScheduler.Appoinments.CollectionChanged event but in order to use it I have to use an AddHandler statement, something I'm not accustomed to in VB.
It just seems that an AppointmentChanged event would be an obvious event to implement.

Hello,
Is there a way to set the opacity of the ChartTrackballController?
Thank you.
Mad


Hi,
I'm using Scheduler(RadWinForms Ver 2011.3.11.1219) for my project. Now, i want to insert/update back the "Appointment" information to my database after user click "Ok" or Cancel from "Edit Appointment Dialog form". I do not see any event for after added/updated the schedule control. I saw below event on RadSchedule
- AppointmentDeleted
- AppointmentDeleting
- AppointmentSelected
- AppointmentSelecting
How can i know the changes or newly add of appointment after user close or click ok/cancel from "Edit Appointment" form.
Regards,


I need to add some custom images to the ribbon, and I am wondering what is the best practice method for doing this.
Here's what I have right now, which is obviously not right. What would be a more elegant approach?
var templateNameImageBytes = Convert.FromBase64String(@"iVBORw0KGgoAAAAN......"); //truncatedvar templateNameStream = new MemoryStream(templateNameImageBytes);var lblTempalteName = new RadLabelElement(){ Text = "Template Name:", AutoSize = false, Size = new Size(120, 20), Image = Image.FromStream(templateNameStream), TextImageRelation = TextImageRelation.ImageBeforeText};
