摘要: 区别: 阅读全文
posted @ 2013-04-23 12:40 Trilyn 阅读(65) 评论(0) 推荐(0)
摘要: 获取选中值:function getCheckedStation() { var stations = $('#stationList').datagrid('getSelections'); //获取流程列表选中项 if (stations.length > 0) { var ids = []; //ID对象 for (var i = 0; i < stations.length; i++) { ids.push(stations[i].chk); } var IDs = ids.join(','); //将ids对象用‘,’连接成 阅读全文
posted @ 2013-04-23 12:37 Trilyn 阅读(725) 评论(0) 推荐(0)
摘要: 取值:var ToNodes = $("#txtTONodesID").combobox('getValues').join(",").replace(/^,/, "");赋值:var nodes = node.TONodesID.split(',');$("#txtTONodesID").combobox('setValues', nodes);初始化: $.get("../WFSetting/WFNodesHandler.ashx?handlerType 阅读全文
posted @ 2013-04-23 12:29 Trilyn 阅读(318) 评论(0) 推荐(0)
摘要: $('#ID').datebox('setValue',dateTime) 赋值$('#ID').datebox('getValue') 取值 阅读全文
posted @ 2013-04-23 12:25 Trilyn 阅读(247) 评论(0) 推荐(0)