c# - Add checkbox in dropdownlist and this dropdownlist add radgridview -
i'm using telerik controls on project. want add dropdownlist column in radgridview , select multiple values. m using c# language. windows forms application.
from http://www.telerik.com/help/winforms/gridview-columns-gridviewcheckboxcolumn.html
gridviewcheckboxcolumn checkboxcolumn = new gridviewcheckboxcolumn(); checkboxcolumn.datatype = typeof(int); checkboxcolumn.name = "discontinuedcolumn"; checkboxcolumn.fieldname = "discontinued"; checkboxcolumn.headertext = "discontinued?"; radgridview1.mastertemplate.columns.add(checkboxcolumn);
i think u mean right? next time try google answers first, way faster waiting answer here!
Comments
Post a Comment