or
How can I select multiple check boxes in radgrid and select All
I am using RadGridview which view a data from sql database with one GridViewCheckBoxColumn.
Once the checkbox is clicked the whole row is deleted as I want, However I wanna allow that for multiple rows at the same time.
Also I want to select all
Is that possible?
In my grid I should click twice to check the box! How can I avoid that?
All the columns in the grid is read only except the checkbox column
Thanks and regards
RadMenuButtonItem bi = new RadMenuButtonItem();
bi.Text = string.Format("Item {0}", counter);
bi.TextAlignment = ContentAlignment.MiddleLeft;
Font fnt = new Font("Arial Rounded MT", 18.0f);
bi.Font = fnt;
bi.Click += new EventHandler(radDropDownButton_Item_Click);
bi.AutoSize = false;
bi.Size = new Size(radDropDownButton_Caregivers.Size.Width, 50);
radDropDownButton.Items.Add(bi);