Completed
Last Updated: 16 Sep 2020 08:50 by ADMIN
Release R3 2020
Add the ability to resize all columns to fill the available space, same as the AutoSizeColumnsMode property of RadGridView
Unplanned
Last Updated: 28 Feb 2018 11:41 by ADMIN
It would be more convenient to the end user to have a single checkbox in the header of RadListView(DetailsView) which will check/uncheck all the items in RadListView. Also, the group items should have a checkbox which checks/unchecks all the items in that group.
Completed
Last Updated: 30 Nov 2017 08:29 by ADMIN
CheckAllItemCheckedChanging and CheckAllItemCheckedChanged events will be used to detect when the user checks/unchecks the "Check All" item. In the CheckAllItemCheckedChanging event it is necessary to able able to cancel the operation. In the CheckAllItemCheckedChanged event all Items should be already checked/unchecked and the CheckedItems collection must be correct.
Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
Add StartsWith  autocomplete mode as in the RadDropDownList.
Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently, when you edit the Columns collection of RadListView, you cannot change the Name of the newly added columns.
Unplanned
Last Updated: 22 Aug 2016 10:56 by ADMIN
It should be similar to RadCheckedListBox:

DataTable dt = new DataTable();
dt.Columns.Add("Id",typeof(int));
dt.Columns.Add("Name", typeof(string));
dt.Columns.Add("IsChecked", typeof(int));

for (int i = 0; i < 10; i++)
{
    dt.Rows.Add(i,"Item"+i,i%2);
}
this.radCheckedDropDownList1.DataSource = dt;
this.radCheckedDropDownList1.DisplayMember = "Name";
this.radCheckedDropDownList1.ValueMember = "Id";
this.radCheckedDropDownList1.CheckedMember = "IsChecked";
Unplanned
Last Updated: 06 May 2016 07:52 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category:
Type: Feature Request
0
The user won't be allowed to enter some text if a match doesn't exist.
Completed
Last Updated: 16 Nov 2015 16:06 by ADMIN
Note: in data bound scenario, when setting the DescriptionTextMember property, DescriptionTextListDataItems should be created.

Workaround: use custom items:

private void radCheckedDropDownList1_CreatingVisualListItem(object sender, CreatingVisualListItemEventArgs args)
{
    args.VisualItem = new CustomRadListVisualItem();
}

public class CustomRadListVisualItem : RadCheckedListVisualItem
{
    protected override Type ThemeEffectiveType     
    { 
        get    
        { 
            return typeof(RadListVisualItem);     
        }
    }

    LightVisualElement description = new LightVisualElement();

    protected override void CreateChildElements()
    {
        base.CreateChildElements();
        StackLayoutPanel stack = this.Children.First() as StackLayoutPanel;
        description.ForeColor = Color.Gray;
        stack.Children.Add(description);
    }

    public override void Synchronize()
    {
        base.Synchronize();
        RadCheckedListDataItem dataItem = (RadCheckedListDataItem)this.Data;
        if (dataItem != null)
        {
            DataRowView drv = dataItem.DataBoundItem as DataRowView;
            if (drv != null)
            {
                description.Text = drv.Row[dataItem.Owner.DescriptionTextMember] + "";
            }
        }
    }
}
Completed
Last Updated: 19 Aug 2015 15:56 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 1
Category:
Type: Feature Request
0

			
Declined
Last Updated: 23 Jul 2015 08:06 by ADMIN
Similar functionality is available for RadTreeView: http://www.telerik.com/help/winforms/treeview-editing-editing-nodes.html
Completed
Last Updated: 12 Jun 2015 13:41 by ADMIN
Currently, RadListView does not support drag and drop functionality when the lasso selection is enabled. Add functionality to support both of them similar to Windows Explorer.
Completed
Last Updated: 10 Jun 2015 06:16 by ADMIN
ADMIN
Created by: Dimitar
Comments: 2
Category:
Type: Feature Request
2
The ASP suite alredy have this: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/checkboxes/defaultcs.aspx?show-source=true
Completed
Last Updated: 20 Oct 2014 14:00 by ADMIN
Completed
Last Updated: 08 Oct 2014 11:09 by ADMIN
WORKAROUND:
radListView1.Groups[0].PropertyChanged += Form1_PropertyChanged;
..............
 void Form1_PropertyChanged(object sender, PropertyChangedEventArgs e)
 {
     if (e.PropertyName == "Expanded")
     {
         ListViewDataItemGroup group = (ListViewDataItemGroup)sender;
 
         RadMessageBox.Show(group.Text + " is expanded = " + group.Expanded);
     }
 }
Completed
Last Updated: 09 Jul 2014 08:48 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category:
Type: Feature Request
6
Implement drag & drop functionality for items in RadListView in bound mode.

Resolution: Drag and Drop functionality for bound RadListView can be achieved following the approach in the referred help article: http://www.telerik.com/help/winforms/listview-drag-and-drop-drag-and-drop-in-bound-mode.html  
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Plamen
Comments: 0
Category:
Type: Feature Request
3
Currently, you could not change the position of the check box. The code below does not effect at all the appearance of the checkbox in the RadListView control:
e.VisualItem.ToggleElement.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
e.VisualItem.ToggleElement.TextImageRelation = TextImageRelation.ImageAboveText;
e.VisualItem.ToggleElement.TextAlignment = System.Drawing.ContentAlignment.TopCenter;
e.VisualItem.ToggleElement.ImageAlignment = System.Drawing.ContentAlignment.BottomCenter;
Completed
Last Updated: 03 Sep 2012 03:48 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category:
Type: Feature Request
21
Add BestFit functionality similar to the one in RadGridView.
Completed
Last Updated: 17 Aug 2012 07:23 by ADMIN
IMRPOVE. RadListView - add option to choose whether the newly added items should be automatically selected or not (added by user or by DataSource)
1 2