grid中用gridSelect实现存储ID显示名称
数据库中存的是数字,grid中用gridSelect下拉显示名称可以参考下面的方案 案例一:queryAction中用case when实现,fSex中存储0或1显示男或女 1.queryAction中select中添加自定义字段custom3设置case when select AP_CBM.*,(case when AP_CBM.fSex ='0' then '男' when AP_CBM.fSex ='1' then '女' else '' end) as custom3 from AP_CBM AP_CBM 2.grid的column(列)中添加custom3,不需要添加fSex 3.在custom3列中放gridSelect进行设置,bind-ref设置为fSex,bind-labelRef设置为custom3, option下相关属性的设置 data:要下拉的数据来源 value:下拉的数据来源的ID列 label:下拉数据的数据来源的name列 案例二:queryAction中有关联查询实现,fCreator中存储人员ID显示人员名称 1.queryAction中关联查询SA_OPPerson中的数据返回人员名称sName [...]