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

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -