I am using Devexpress GridControl and I listed the data (personel informations) on the grid. But I want to add checkEdit on GridControl/Gridview. This checkEdit will be select or unselect to the incoming data. How can I do this?
Thanks,
Best Regards,
Starting with version 13.2, the GridView in the XtraGrid control
provides a built-in checkbox column for multiple row selection. See
the following help topic to learn more: Multiple Row Selection via
Built-In Check Column
References:
How to Select row using checkedit gridcontrol devexpress?
Related
When we add a gridview we can enable selecting a row by checked enable selection on grid view proerty. But When we add DataList there is not 'enable selection' property for that.
Is any way to do this?
I want to bind a datalist with a table of my database and select a row to access row items or delete a row like gridview.
Please give me a sample codes .
Thanks alot.
http://www.codeproject.com/Articles/23559/Working-with-the-DataList-Control
I have a Datatable that is bound to a DataGridView.The DataGridView gives me the required information retrieved from the DataTable. One of the columns needs to be as a ComboBox. How to I make sure that the information is displayed from the Datatable with one column being a ComboBox?
Please Advice.
Check Using TemplateFields in the GridView Control
Here is another article on Template Fields from MSDN.
I have an DevExpress aspxGridView with GridViewCommandColumn checkbox as the first column to select rows. After user selects rows, I need to get the rows where the checkbox is checked in a button click. Please help to do that. I am new to DevExpress controls.
Try to use the approach described in the following Support Center ticket:
http://www.devexpress.com/issue=Q303022
If it just necessary to retrieve a particular selected rows’ key / non-key values, use the ASPxGridView.GetSelectedFieldValues method.
I have binded data in RadGrid. I want to check multiple checkboxes and value inserted in textboxes in grid column should be inserted in database though single button based on checked checkboxes.
is it only possible through foreach loop and findcontrol in it. Please Help keeping performance of grid in mind.
Thank you very much
Currently I am highlighting the rows on my gridview through code behind. The problem is when I inserted a new data through formview, I put the highlight on the new data but if you click edit or delete if would go for either the first data on the grid if you have not selected anything yet or the last data you have selected. Thanks.
According to the MSDN Documentation, GridView.SelectedDataKey its a read only property.
You may want to check the documentation for GridView.SelectedPersistedKey which is settable.