Hi, I am using version 17.2.502.0 in which I have encountered a problem with the radlistview control in its views (iconview, listview, detailsview), in my case I am using it with iconview; the problem is specifically that sometimes does not select the item when you click and you have to press up to 4 times to select an item this asu prevents the itemmouseclick event from performing correctly.
I hope your support, thank you.
note: I'm using the google translator, apologies from the case.
Private Sub CargarArtistas(ByVal lw As RadListView) Try lw.ItemSize = New Size(180, 180) lw.AllowArbitraryItemHeight = True lw.ItemSpacing = 3 lw.EnableKineticScrolling = True lw.ListViewElement.ViewElement.ViewElement.Margin = New Padding(3, 3, 3, 3) lw.ListViewElement.ViewElement.Orientation = Orientation.Horizontal 'lw.ListViewElement.DrawFill = False Me.Listar_VideoTableAdapter.Fill(Me.DsArtistas.Listar_Video, Genero_Predeterminado, "VIDEO") lw.DataSource = Me.ListarVideoBindingSource lw.DisplayMember = "Artista" 'lw.EnableSorting = True 'Dim sort As New SortDescriptor("Artista", ListSortDirection.Ascending) 'lw.SortDescriptors.Add(sort) Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical, MsgboxTitle) End Try End Sub Private Sub Frm_Testeo_Load(sender As Object, e As EventArgs) Handles MyBase.Load Try CargarArtistas(lwVideo) ThemeResolutionService.LoadPackageFile(Application.StartupPath & "\Themes\CSI_THEME_LW.tssp") lwVideo.ThemeName = "CSI_THEME_LW" Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical, MsgboxTitle) End Try End Sub Private Sub lwVideo_ItemDataBound(sender As Object, e As ListViewItemEventArgs) Handles lwVideo.ItemDataBound Try Dim rowView As DataRowView = TryCast(e.Item.DataBoundItem, DataRowView) Dim icon As Image icon = Image.FromFile(rowView.Row("Foto")) e.Item.Image = icon.GetThumbnailImage(180, 180, Nothing, IntPtr.Zero) Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical) End Try End Sub Private Sub Show_FormArtistas(ByVal lw As RadListView) Try Codigo_Genero_Seleccionado = TryCast(lw.SelectedItem.Item("CodGenero").ToString, String) Genero_Seleccionado = TryCast(lw.SelectedItem.Item("Genero").ToString, String) Artista_Seleccionado = TryCast(lw.SelectedItem.Item("Artista").ToString, String) Foto_Seleccionado = TryCast(lw.SelectedItem.Item("Foto").ToString, String) Formato_Seleccionado = TryCast(lw.SelectedItem.Item("Tipo").ToString, String) Formulario = "Artistas" Dim oFrm_Gray As New Frm_Gray oFrm_Gray.BackColor = Color.FromArgb(BackColor_GUI) oFrm_Gray.Opacity = 0.5 oFrm_Gray.ShowDialog() Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical, MsgboxTitle) End Try End Sub Private Sub lwVideo_ItemMouseClick(sender As Object, e As ListViewItemEventArgs) Handles lwVideo.ItemMouseClick Try Show_FormArtistas(lwVideo) Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical, MsgboxTitle) End Try End Sub Private Sub lwVideo_VisualItemCreating(sender As Object, e As ListViewVisualItemCreatingEventArgs) Handles lwVideo.VisualItemCreating Try e.VisualItem = New CustomVisualItem Catch ex As Exception MsgBox(ex.Message, MsgBoxStyle.Critical, MsgboxTitle) End Try End Sub

I have a gantt view that I want to populate with data, but when i set it to the day range the the major timeline grid sizing seems to scale to the size of the container rather than to the secondary time line grid (see attached picture). The gantt view items are properly scaled to the major grid, but the secondary timeline markings are wrong. Is there a setting that i can use to make the major timeline grid marks stretch over all the available secondary timeline markings?
This is running on windows 10, telerik ui for winforms 2016 R3.
To replicate the issue create a new project with a gantview and use the following code in the load function.
RadGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = Telerik.WinControls.UI.TimeRange.Day
RadGanttView1.GanttViewElement.GraphicalViewElement.TimelineStart = Today
RadGanttView1.GanttViewElement.GraphicalViewElement.TimelineEnd = Today.AddHours(24)
Dim tasks As New DataTable("Tasks")
tasks.Columns.Add("Id", GetType(Integer))
tasks.Columns.Add("ParentId", GetType(Integer))
tasks.Columns.Add("Title", GetType(String))
tasks.Columns.Add("Start", GetType(DateTime))
tasks.Columns.Add("End", GetType(DateTime))
tasks.Columns.Add("Progress", GetType(Decimal))
Dim links As New DataTable("Links")
links.Columns.Add("StartId", GetType(Integer))
links.Columns.Add("EndId", GetType(Integer))
links.Columns.Add("LinkType", GetType(Integer))
Dim data As New DataSet()
data.Tables.Add(tasks)
data.Tables.Add(links)
tasks.Rows.Add(1, 0, "Summary task title", Today.AddHours(11), Today.AddHours(12), 30D)
tasks.Rows.Add(2, 1, "First child task title", Today.AddHours(11), Today.AddHours(11.5), 10)
tasks.Rows.Add(3, 1, "Second child task title", Today.AddHours(11.5), Today.AddHours(12), 20D)
tasks.Rows.Add(4, 1, "Milestone", Today.AddHours(12), Today.AddHours(12), 0D)
links.Rows.Add(2, 3, 1)
links.Rows.Add(3, 4, 1)
Me.RadGanttView1.GanttViewElement.TaskDataMember = "Tasks"
Me.RadGanttView1.GanttViewElement.ChildMember = "Id"
Me.RadGanttView1.GanttViewElement.ParentMember = "ParentId"
Me.RadGanttView1.GanttViewElement.TitleMember = "Title"
Me.RadGanttView1.GanttViewElement.StartMember = "Start"
Me.RadGanttView1.GanttViewElement.EndMember = "End"
Me.RadGanttView1.GanttViewElement.ProgressMember = "Progress"
Me.RadGanttView1.GanttViewElement.LinkDataMember = "Links"
Me.RadGanttView1.GanttViewElement.LinkStartMember = "StartId"
Me.RadGanttView1.GanttViewElement.LinkEndMember = "EndId"
Me.RadGanttView1.GanttViewElement.LinkTypeMember = "LinkType"
Me.RadGanttView1.GanttViewElement.DataSource = data
Me.RadGanttView1.Columns.Add("Start")
Me.RadGanttView1.Columns.Add("End")


public partial class SettingsManager : UserControl { public SettingsManager() { InitializeComponent(); _propertyStore = CreateProperties(); radPropertyGrid1.SelectedObject = _propertyStore; radPropertyGrid1.PropertySort = PropertySort.CategorizedAlphabetical; } private RadPropertyStore _propertyStore; private PropertyStoreItem _defaultSaveDirectory; private RadPropertyStore CreateProperties() { var result = new RadPropertyStore(); _defaultSaveDirectory = new PropertyStoreItem(typeof(string), "DefaultSaveFolder", Properties.Settings.Default.DefaultSaveFolderPath, "Default directory for saving snapshot and configuration files.", "Save Snapshot/Configuration", false); _defaultSaveDirectory.PropertyChanged += OnDefaultSaveDirectoryChanged; result.Add(_defaultSaveDirectory); return result; } void OnDefaultSaveDirectoryChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e) { var folderDialog = new FolderBrowserDialog { Description = Resources.DefaultLocationDialogHelp, ShowNewFolderButton = true }; if (DialogResult.OK == folderDialog.ShowDialog()) { _defaultSaveDirectory.PropertyChanged -= OnDefaultSaveDirectoryChanged; _defaultSaveDirectory.Value = folderDialog.SelectedPath; _defaultSaveDirectory.PropertyChanged += OnDefaultSaveDirectoryChanged; Properties.Settings.Default.DefaultSaveFolderPath = folderDialog.SelectedPath; } }}

Hi sir/Madam,
I am a programmer evaluating the raddock
Created the form and add raddock control.
I hv created one text box in right side tool window.
I hv a radform as a document in the dock container.
I need to access the tool window text box and pass the value to the text box from the
document form.
I am unable to access the text box control which is resided in the tool window of raddock.
Please help me for the above.
Regards

It's really not that complicated to manually remove "mask" characters from a string but I was curious if this control already has this ability built in?
Here's an example:
assume ctrl = RadMaskedEditBox
ctrl.Mask = "00000-9999"
ctrl.Text = "_____-____"
ctrl.MaskType = Standard
If the user gets to this input box and types in "12345" and I check ctrl.Value I get this: "12345-____" when what I really want is "12345"
If I'm missing something, please advise otherwise, i'll just grunt my way through it :)
Thanks everyone!!!
-Curtis


Hi,
I have a RadDropDownList as part of my ribbon bar, is it possible to drag (then drop) the selected item onto another control ?
I have done this before using a RadListControl (and RadListDataItems) on a form which has a MouseMove handler, however the RadDropDownList control in the ribbon bar does not have a mouse move handler.
In the ribbon bar mouse down handler, I have tried using
RadDropDownListEditableAreaElement b = radRibbonBar1.ElementTree.GetElementAtPoint(e.Location) as RadDropDownListEditableAreaElement;
but how do I get a reference to the original RadListDataItem which has some data in the Value and Tag fields ?
Regards
Toby
