在 propertygrid 组合框上设置值 (jeasyui)
Set value on propertygrid combobox (jeasyui)
如何使用 jquery 在 propertygrid 中的 jeasyui 组合框上设置值?
我尝试使用 selector 触发网格,然后 select 生成组合框的 "td",但没有成功。
"td" 的值发生变化,但是当您单击组合框或创建 post 之前的原始值 returns
$("#datagrid-row-r4-2-3 > td:nth-child(3) > div").html('new value');
知道了,看代码:
//update visual value on screen
$("#datagrid-row-r4-2-3 > td:nth-child(3) > div").html(row.cd_erro);
//update value
$("#pg").propertygrid('getRows')[3].value = 'new value';
如何使用 jquery 在 propertygrid 中的 jeasyui 组合框上设置值?
我尝试使用 selector 触发网格,然后 select 生成组合框的 "td",但没有成功。 "td" 的值发生变化,但是当您单击组合框或创建 post 之前的原始值 returns
$("#datagrid-row-r4-2-3 > td:nth-child(3) > div").html('new value');
知道了,看代码:
//update visual value on screen
$("#datagrid-row-r4-2-3 > td:nth-child(3) > div").html(row.cd_erro);
//update value
$("#pg").propertygrid('getRows')[3].value = 'new value';