ADO Programming

Moderators: None (Apply to moderate this forum)
Number of threads: 87
Number of posts: 225

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Checkbox Column In Datagrid Posted by elizas on 19 Feb 2010 at 6:23 AM
When we add a customized checkbox column to a datagrid in .net (windows application) , the default property allows to check or uncheck the column using a double click. On the first click it selects the column and on the second click the column is either checked or unchecked.

To change this default property, we need to handle the click event on grid and modify the selected cell value. Here is the sample code to achieve this.

[C#.NET VS 2003 , Code to add checkbox column to grid using table style property]

dgItemDetails.TableStyles.Clear(); // clears the tablestyle (dgItemDetails is the name of grid)
DataGridTableStyle dgt = new DataGridTableStyle();
dgt.MappingName = "ItemDetails";

DataGridBoolColumn dgbCol = new DataGridBoolColumn(); // creates the checkbox column
dgbCol.MappingName = "Select";
dgbCol.HeaderText = "";
dgbCol.Width = 40;
dgbCol.AllowNull = false;
dgbCol.Alignment = HorizontalAlignment.Left;
dgt.GridColumnStyles.Add(dgbCol);

dgItemDetails.TableStyles.Add(dgt); // add new tablestyle to grid

Hope this tip would be helpful
http://www.mindfiresolutions.com/Checkbox-Column-In-Datagrid-857.php

Report
Re: Checkbox Column In Datagrid Posted by elizas on 16 Mar 2010 at 11:56 PM
When we add a customized checkbox column to a datagrid in .net (windows application) , the default property allows to check or uncheck the column using a double click. On the first click it selects the column and on the second click the column is either checked or unchecked.

To change this default property, we need to handle the click event on grid and modify the selected cell value.

For more details about that tip.please check the link below:
http://www.mindfiresolutions.com/Checkbox-Column-In-Datagrid-857.php




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.