Tagged Questions
The datagridviewcheckboxcell tag has no wiki summary.
8
votes
2answers
257 views
Is there a way to make DataGridViewCheckBox Cells smaller?
As described in this question it appears the minimum row height for a row in a DataGridView (WinForm not WPF) is 17 if you wish to display check boxes in a DataGridViewCheckBoxCell. Any smaller and ...
4
votes
3answers
3k views
DataGridView column of type DataGridViewCheckBoxCell is constantly readonly/disabled
I am using a .NET Windows Forms DataGridView and I need to edit a DataBound column (that binds on a boolean DataTable column). For this I specify the cell template like this:
DataGridViewColumn ...
2
votes
2answers
645 views
DataGridViewCheckBoxCell how to show checked when set during form load
I have a DataGridView that loads data from a DataTable, along with an unbound column of DataGridViewCheckBoxCells. The rows in the DataGridView are compared with a separate DataTable with values the ...
1
vote
3answers
415 views
C# DataGridViewCheckBoxColumn Hide/Gray-Out
I have a DataGridView with several columns and several rows of data. One of the columns is a DataGridViewCheckBoxColumn and (based on the other data in the row) I would like the option to "hide" the ...
1
vote
0answers
142 views
Datagridview : Make checkbox column read-only
I am using a Datagrid view control to display data. I am using datasource binding to load data.
Datagridview column structure is defined and it has one DataGridViewCheckBoxColumn, which I have made ...
1
vote
3answers
268 views
How can I update the value of a DataGridViewCheckBoxCell immediately?
I am using a DataGridViewCheckBoxCell in a DataGridView control. While the user clicks the checkbox, I verify certain conditions and set its value to false. However, the checkbox remains checked until ...
1
vote
0answers
318 views
Issue detecting checkbox state in DataGridView
I have a DataGridView control in a .Net application that contains a checkbox column. I would like for the user to be able to edit the checkboxes. The issue that I am running into is that I cannot ...
1
vote
5answers
2k views
Programmatically uncheck checkboxcolumn in datagridview
How can I programmatically uncheck all rows in a DataGridViewCheckboxColumn in a datagridview?
I can get the correct value of the checkbox using
(bool)row.Cells[CheckBoxColumn.Index].FormattedValue
...
1
vote
1answer
526 views
DataGridView update datasource directly after changed Checkbox value
I have a System.Windows.Forms DataGridView that is bound to a List<MyObject>.
The class MyObject contains a boolean property that is bound to DataGridViewCheckboxCell within the DataGridView.
...
1
vote
2answers
3k views
DataGridView Check Box selection
I added datagridview to my win forms app and I also added one Check Box for marking rows.
The CheckBox works as I expected until the user sorts the DataGridView. After the sort the previous selection ...
1
vote
2answers
5k views
How to verify if a DataGridViewCheckBoxCell is Checked
I have a problem which I can't seem to solve. I have a bound a data table to a datagridview, this datatable has a column called "Status" which is of type boolean. I can set the value to true or ...
1
vote
4answers
8k views
Programatically loop through a DatagridView and check checkboxes
I have DataGridView bound by a datatable i have checkboxes to the same.
I want to navigate or loop through the the datagridview and check mark these checkboxes ,Below is the syntax i use .
...
1
vote
3answers
1k views
Proper ObjectDataSource Use
Greetings!
I'm creating a User Control that will display data in a GridView control. We are using n-tier architecture and the data in question is retrieved from our database and returned to us as a ...
0
votes
0answers
5 views
copy & paste or move multiple rows in datagridview vb.net
I want to copy & paste & also move multiple selected rows.
I dont want to use GetClipboardContent method because it only gives gridview selected contents not shows the all full row which is ...
0
votes
1answer
36 views
Unbound DataGridViewCheckBoxCell set value
I have a problem. My code contains DataGridView and UnBound CheckBoxColumn.
My dialog should be for choose rooms from list.
For second time you want to see what are you chose in first time.
Code:
...
0
votes
1answer
41 views
How to get checked cell from datagridview in C#
I have datagridview with checkboxcolumn.
How can I detect when checkbox state in cell has changed?
Which event is fired when user click checkbox in datagridivew?
0
votes
0answers
38 views
select and update OrderStatus of selected records in DataGridView
I am developing a Windows Forms Based Application using dbo.database and Visual Basic:
I populate some Orders in DataGridView1 using LINQ 2 SQL from "tbl_Orders" where OrderStatus is "Pending". I ...
0
votes
1answer
185 views
check all checkboxes in datagridview checkbox column
I currently have a datagridview which i want to use to select the users which are being mailed with a checkbox.
Now the problem is i want to include a button which checkes all the users my code ...
0
votes
2answers
170 views
Datagrid checkbox column select not working right
I want to have a column with checkboxes that when ever the user clicks them, they select thier own row(hightlight it).
I have come up with this code, with does not do the job, can you help me fix ...
0
votes
2answers
202 views
C# Exporting selected DataGridViewCheckBoxCell
I'm trying to export only the selected checkbox items on a datagridview. The current code I have works, but the problem is it exports everything, I'm able see the True/False values in the exported csv ...
0
votes
3answers
266 views
How to know if the Check box is checked
In a data grid view I need to loop on the rows and get the rows that contain a checked checkbox
dgv.rows[i].cells[0].value is returning empty in the both cases
all this is happening on the event ...
0
votes
2answers
570 views
Datagridview checkboxcolumn validation
In a DatagridView I have databound checkboxcolumns. But if I check or uncheck multiple checkboxes, not all changes are saved. (It doesn't trigger the property Set method on all, maybe on every 2nd). ...
0
votes
2answers
1k views
Cannot select checkbox in a databounded DataGridView
I've a DataGridView which is working perfectly fine. I use it just to show data.
Now I want ability to select rows by check box and perform an operation for only selected rows on click of a button ...
0
votes
1answer
337 views
Background colour of DataGridViewCheckboxCell
I have a DataGridView bound to a list of objects, and I'm setting a dynamic cell background colour using the CellFormatting event, as in this answer. This works well for every column except the ...
0
votes
1answer
265 views
DatagridViewCheckBoxColumn positioning the checkbox to the left with text following it
i had created a custom checkbox cell and column just to display a text along with the checkbox. the custom paint gets the bounds and paints the string.
the issue i have is, the checkbox is always @ ...
0
votes
1answer
949 views
Displaying results of a LINQ TO XML query in Gridview
I am querying an xml document in LINQ and would want to display the results in gridview to allow users to select from the list.
the query is as a result of user input.
Here's a copy of my xml.
...
0
votes
1answer
2k views
How would one get a DataGridViewCheckBoxColumn to show DataRelation status?
Say I have a DataGridView (named dataGridView) that is displaying a Strongly Typed DataTable (named ChildDataTable).
dataGridView has a DataGridViewCheckBoxColumn (named parentIDColumn) that is bound ...
0
votes
1answer
839 views
DataGridViewCheckBoxCell is broken for ->Value result
I'm using a DataGridViewCheckBoxCell but I can't figure out how to have the ->Value property working "correctly".
for (int i = this->dgvConfigs->Rows->Count - 1; i >= 0 ; i --){
...