本帖最后由 huanghong 于 2019-3-19 00:13 编辑
我给 ComboBoxCellType 绑定了一个DataTable数据集,该数据集有两个字段,在前台选择一行数据后,请问如何在后台获得所选择的行对应的另一个字段内容?
如下定义,我在前台选择了"jgmc"字段的某一行,如何在后台获得 与"jgbm"字段对应行的内容?
FarPoint.Web.Spread.ComboBoxCellType cb2 = new FarPoint.Web.Spread.ComboBoxCellType();
cb2.DataSource = ds.Tables[0];
cb2.DataMember = "ds";
cb2.DataTextField = "jgmc";
cb2.DataValueField = "jgbm";
FpSpread1.Sheets[0].Columns[0].CellType = cb2;
|
|