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