我在后台绑定ComBox
FarPoint.Web.Spread.ComboBoxCellType com1 = new FarPoint.Web.Spread.ComboBoxCellType();
com1.DataSource = ds.Tables[1];
com1.DataTextField = "cNR";
com1.DataValueField = "cZDZBM";
FpSpread1.Sheets[0].Columns[12].CellType = com1;
当修改重新选择ComBox的选项后,我点击保存按钮,这时我在FpSpread1_UpdateCommand事件中,获取的是DataTextField 的值,请问,我能获得DataValueField 的值吗?怎么获取?
请版主发威0000谢谢! |
|