阅读:1191
回复:3
|
[BUG反馈]ie浏览器串签,重新选择人员保存后,顺便没有按最新的保存
请教一下,在ie下的选人控件选择多人时,如果已经加载时已经选中的人员,删除重新添加,顺序也会按加载时的顺序,新增人员都加在最末尾,这个bug怎么解决?在使用选人做串签参与者时,审批和用户选择的顺序不一样,请问怎么解决?
谷歌浏览器正常。 |
1楼#
发布于:2018-06-07 17:44
你的需求是选人控件拖动排序?
|
|
|
2楼#
发布于:2018-06-12 09:51
谢谢您的反馈,问题已记录!
|
|
|
3楼#
发布于:2018-06-21 13:59
替换sheetuser.js中GetValue:方法
//用户ID GetValue: function () { var that = this; var users; $(that.ChoicesElement).find("li.select2-search-choice").each(function () { if (that.IsMultiple) { if (users == undefined) users = new Array(); users.push($(this).data("code")); } else { users = $(this).data("code"); } }); return users == undefined ? "" : users; }, |
|