在jsp中指定容器为combogrid onselect事件不执行

来源:互联网 发布:上海润和软件 编辑:程序博客网 时间:2024/06/04 08:34
<select  id="depCode" class="combogrid" name="dto.doctor.depCode"  style="width:218px;"        data-options="            panelWidth:345, idField:'departCode', textField:'departName', singleSelect:true, mode: 'remote',pagination:true,            url: '<%=request.getContextPath()%>/standDepartment/standDepartmentCtrl.htm',            queryParams:{'dto.filterParam':'parentOrgCombox'},            columns:[[                  {field:'departCode',title:'科室代码',width:100},                  {field:'departName',title:'科室名称',width:220}            ]],          " onclick="depNameChange()"></select>

onclick事件不执行

写在 data-options中也不行 换个事件onselectRow也不行

0 0