Hi everyone.
Using a custom pin, I've plotted a passenger plane on the map, that by changing the coordinates of the passenger plane, the custom pin of the plane moving on the map.Next to it, I used polyline to draw a flight path. But I encountered problems.
1) I want to turn the plane icon in the direction of the flight path, but it is not.
2) or i want to draw lines of plane icon path with correct icon direction.
Thanks
Hello,
Currently, if I add a GridViewDateTimeColumn into a RadGridView, I can only edit the date component and I don't have a TimePicker part, even though I choose a DateTimePicker component as EditorType property. I'm even not allowed to set the time by typing it.
I also tried to trigger it manually with the following code, without any success:
var startDateColumn = radGridView1.Columns["StartDate"] as GridViewDateTimeColumn;var picker = startDateColumn?.GetDefaultEditor() as RadDateTimeEditor;var editor = picker.EditorElement as RadDateTimeEditorElement;editor .ShowTimePicker = true;
How can I enable both date & time editing on a GridViewDateTimeColumn?
Windows 10 - VS2017 - .NET Framework 4.6.1 - Telerik R1 2019 - Fluent theme

How can I select the Button(s) via Keyboard. Tab does not seem to work while inside the Textbox.
Regards
Erwin

on visual studio 2019 and 2017 I created a new radribbonform and added a dropdownbutton inside it and added buttons to that dropdown button but when I click on the dropdown button to show the dropdown menu and it's buttons it doesn't open and when I go to items collection of the dropdown button to edit the property of each item it's dimmed

Hi,
I'm trying to create a customised version of the appointment dialog, which will actually combine some of the functionality of both the EditRecurrence dialog and the EditAppointment dialog.
From the EditActivity dialog all I need is the start date and subject fields along with the save and cancel buttons, and then from EditRecurrence I want a checkbox to enable recurrence functionality, which will enable the recurrence pattern and range of recurrence groups of controls in the same dialog.
What would be the best way to implement this window? I've played around with inheriting EditRecurrenceDialog (partial class frmEditAppointment : EditRecurrenceDialog) but I can't seem to hide the controls I don't want. For example when I try to hide the All Day Event checkbox the "Visible" property is greyed out in the designer/properties window and I can't change it to false.
Given these issues I get the impression I'd be best off creating a new appointment dialog entirely, how should I go about doing this? Ideally I wouldn't want to have to recreate groups of controls like the recurrence pattern or range of recurrence and instead just add/copy them in somehow.
Thanks for your help, Tom.

hello
i want change NumberDecimalSeparator to grid example below:
120.459->120/459
Hi,
I'm having some trouble trying to insert my gridview data into a table using store procedure.
Here's the scenario:
I have a dataset1 with a query that selects about 20 columns from left outer joins 3 views (lets call them A, B, C views) and 1 table (D table).
I created a gridview that fills the gridview that the dataset... of the 20 columns 3 are hidden.
On this D table, I have one column that the cells are empty. This is where we need to enter the data during runtime.
I created a store procedure that will insert 5 columns from the dataset (3 of the hidden columns, 1 visible, and 1 column where we need to enter the value during runtime) using parameters
On my dataset1 configuration, I added a query that will execute the store procedure (lets call it InsertPIWidthTable, which is D table)
Problem:
I got my gridview to populate the data, but can't seem to get what I entered in the cell to store in my D Table. It says there is no argument given that correspond to the required parameter, but I have all the parameter names correct... So I stuck. Help?
I attached screenshots of everything. Thank you!
This is my code:
private void radGridView1_CellValueChanged(object sender, GridViewCellEventArgs e)
{
IEditableObject editableObject = e.Row.DataBoundItem as IEditableObject;
if (editableObject != null)
{
editableObject.EndEdit();
}
DataRowView dataRowView = e.Row.DataBoundItem as DataRowView;
if (dataRowView != null)
{
this.vW_ProdPrintPageTableAdapter.InsertPIWidthTable();
}

Regards!
I'm trying adjust an columns of my GridView, but I don't know why it not change.
I Want adjust the first column with AutoResize Fill, and de remain cells with BestFit:
LoadGrid();
InitializeTemplate();
foreach (var Column in rgvHorasProveedores.MasterTemplate.Columns)
{
if (Column.Name != "Equipo") //Distinct to first column
{
if(Column.AllowResize == true)
Column.AllowResize = false;
}
}
//rgvHorasProveedores.Templates[0].BestFitColumns();
foreach (var Column in rgvHorasProveedores.Templates[0].Columns)
{
if (Column.Name != "Equipo")
{
Column.AllowResize = false;
}
}
rgvHorasProveedores.Templates[0].AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
rgvHorasProveedores.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
The level 2 (second template)it does not change and when reload thr grid, it lost the format.

I have a dropdownList that has the following:
DataSource: binds to a table with 2 columns (ID, Style)
DisplayMember: Is Set to "Style"
ValueMember: Is Set to "Style"
I have a binding source which binds to an model. One of its properties, "PartitionStyle" is a string value.
I set the dropdownList DataBinding.Text: BindingSource.PartitionStyle (Note, I did also try DataBinding.SelectedValue as well)
Now when I choose a value from the drop down list, the "PartitionStyle" property updates to that value which is great. So I save that model and close the form down. Now when I relaunch the form passing in that model to the bindingsource, the display or text of that dropdownlist does not have the correct value(has the index 0 value selected).
I've tried setting BindingSource.DataSource to that model, then BindingSource.ResetBindings, it doesn't work. All the rest of the controls that are NOT dropdownList are displaying correctly(textboxes have the correct values from the properties they are binded to, checkboxes as well).
Any help?
