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
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.
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

			
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)
Completed
Last Updated: 06 Aug 2012 06:53 by ADMIN
For example when checkboxes are enabled, the left side of the first header cells shows the resize cursor, while it should not, because the check boxes area cannot be resized.
Completed
Last Updated: 17 Jan 2012 05:49 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category:
Type: Feature Request
3
Add the option of having three-state checkboxes in RadListView's items.
Completed
Last Updated: 09 Jan 2012 05:49 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category:
Type: Feature Request
1
ADD. RadListView - does not have states (i.e. disabled)
Completed
Last Updated: 18 Aug 2011 01:27 by Jesse Dyck
Add the possibility to reorder items in RadListView via drag & drop.
Completed
Last Updated: 09 Aug 2011 10:10 by ADMIN
FIX. When kinetic scrolling is executed, the hovered item is selected or opened for edit
Completed
Last Updated: 01 Aug 2011 05:08 by ADMIN
ADD. RadListView - add functionality to show the "grid" lines.