- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我正在 jqGrid 中使用 jQuery UI Spinner 作为 NofQ 列。我可以在编辑表单中看到用于添加/编辑的微调器但问题来自编辑表单。当我提交以编辑表单创建新记录时,Spinner 中的当前值不会传递到后端代码。如果我删除微调器并替换为默认文本框,那么我可以在提交时在后端代码中看到输入的值。请修改下面的 jqGrid 脚本
var js = document.createElement("script");
js.type = "text/javascript";
var lastSel = -1;
var grid = jQuery("#list");
var defaultvalue = {
'0': 'Select'
};
editSettings = {
recreateForm: true,
jqModal: false,
reloadAfterSubmit: false,
closeOnEscape: true,
savekey: [true, 13],
closeAfterEdit: true
},
addSettings = {
editData: { TestID: testId },
recreateForm: true,
jqModal: false,
reloadAfterSubmit: true,
savekey: [true, 13],
closeOnEscape: true,
closeAfterAdd: true,
width: 700,
url: paramFromView.AddUrl,
beforeShowForm: function (form) {
$("#tr_NoOfQ", form).show();
$("#NoOfQ.FormElement", form).width(35);
$("#NoOfQ.FormElement", form).height(10);
$("#NoOfQ.FormElement", form).spinner('option', 'min', 1);
$("#NoOfQ.FormElement", form).spinner('option', 'max', 15);*/
}
},
delSettings = {
jqModal: false,
url: paramFromView.AddUrl,
delData: {
ID: function () {
var sel_id = grid.jqGrid('getGridParam', 'selrow');
var value = grid.jqGrid('getCell', sel_id, 'ID');
return value;
},
TestID: testId
}
},
jQuery("#list").jqGrid({
url: paramFromView.Url + '/' + testId,
datatype: "json",
jsonReader: { repeatitems: false, root: "rows", page: "page", total: "total", records: "records" },
colNames: ['DetailDataID', 'Category', 'SubCategory', 'ID', 'NoOfQ'],
colModel: [
{ name: 'DetailDataID', index: 'id', hidden: true, width: 5 },
{ name: 'Category', width: 80, editable: true, edittype: 'select', editoptions: { value: defaultvalue } },
{ name: 'ID', hidden: true, width: 100 },
{
name: 'NoOfQ', index: 'NoOfQ', width: 15, editable: true, summaryType: 'sum'
}
],
rowNum: 20,
rowList: [10, 20, 30],
height: 300,
width: 700,
pager: '#pager',
loadonce: false,
viewrecords: true
}).jqGrid('navGrid', '#pager', { edit: false }, editSettings, addSettings, delSettings);
最佳答案
问题出在 the line jqGrid代码
$(frmtb+" > tbody > tr > td > .FormElement").each(function() { ... }
使用 td > .FormElement
选择器中的一部分。问题是spinner
包裹原件<input>
<span>
内的元素元素和td > .FormElement
没有找到该元素。
要在不更改 jqGrid 代码的情况下解决问题,可以使用 edittype: "custom" 。您可以删除 spinner
的所有来电来自beforeShowForm
并使用 NoOfQ
的以下定义列代替:
{
name: "NoOfQ",
width: 15,
editable: true,
edittype: "custom",
editoptions: {
custom_element: function (value, options) {
return '<input type="text" value="' + value + '"/>';
},
custom_value: function (elem, operation, value) {
if (operation === "get") {
return $(elem).val();
} else if (operation === "set") {
$(elem).val(value);
} else {
return "";
}
},
dataInit: function (elem) {
$(elem).find(">input").spinner({
min: 1,
max: 15
});
}
}
}
应该可以解决这个问题。您可以在下面的演示中看到结果:
$(function () {
"use strict";
var mydata = [
{ myid: "10", invdate: "2007-10-01", name: "test1", note: "note1", amount: "200.00", tax: "10.00", closed: true, ship_via: "TN", total: "210.00" },
{ myid: "20", invdate: "2007-10-02", name: "test1", note: "note2", amount: "300.00", tax: "20.00", closed: false, ship_via: "FE", total: "320.00" },
{ myid: "30", invdate: "2007-09-01", name: "test3", note: "note3", amount: "400.00", tax: "30.00", closed: false, ship_via: "FE", total: "430.00" },
{ myid: "40", invdate: "2007-10-04", name: "test2", note: "note4", amount: "200.00", tax: "10.00", closed: true, ship_via: "TN", total: "210.00" },
{ myid: "50", invdate: "2007-10-31", name: "test2", note: "note5", amount: "300.00", tax: "20.00", closed: false, ship_via: "FE", total: "320.00" },
{ myid: "60", invdate: "2007-09-06", name: "test3", note: "note6", amount: "400.00", tax: "30.00", closed: false, ship_via: "FE", total: "430.00" },
{ myid: "70", invdate: "2007-10-04", name: "test3", note: "note7", amount: "200.00", tax: "10.00", closed: true, ship_via: "TN", total: "210.00" },
{ myid: "80", invdate: "2007-10-03", name: "test1", note: "note8", amount: "300.00", tax: "20.00", closed: false, ship_via: "FE", total: "320.00" },
{ myid: "90", invdate: "2007-09-01", name: "test3", note: "note9", amount: "400.00", tax: "30.00", closed: false, ship_via: "TN", total: "430.00" },
{ myid: "100", invdate: "2007-09-08", name: "test2", note: "note10", amount: "500.00", tax: "30.00", closed: true, ship_via: "TN", total: "530.00" },
{ myid: "110", invdate: "2007-09-08", name: "test2", note: "note11", amount: "500.00", tax: "30.00", closed: false, ship_via: "FE", total: "530.00" },
{ myid: "120", invdate: "2007-09-10", name: "test3", note: "note12", amount: "500.00", tax: "30.00", closed: false, ship_via: "FE", total: "530.00" }
],
$grid = $("#list"),
initDateEdit = function (elem) {
$(elem).datepicker({
dateFormat: "dd-M-yy",
autoSize: true,
changeYear: true,
changeMonth: true,
showButtonPanel: true,
showWeek: true
});
},
initDateSearch = function (elem) {
var $self = $(this);
setTimeout(function () {
$(elem).datepicker({
dateFormat: "dd-M-yy",
autoSize: true,
changeYear: true,
changeMonth: true,
showWeek: true,
showButtonPanel: true,
onSelect: function () {
if (this.id.substr(0, 3) === "gs_") {
// call triggerToolbar only in case of searching toolbar
setTimeout(function () {
$self[0].triggerToolbar();
}, 100);
}
}
});
}, 100);
},
numberTemplate = {formatter: "number", align: "right", sorttype: "number",
editrules: {number: true},
searchoptions: { sopt: ["eq", "ne", "lt", "le", "gt", "ge", "nu", "nn", "in", "ni"] }};
$grid.jqGrid({
datatype: "local",
data: mydata,
colNames: ["Client", "Date", "Closed", "Shipped via", "Notes", "Tax", "Amount", "Total"],
colModel: [
{ name: "name", align: "center", editable: true, width: 65, editrules: {required: true} },
{ name: "invdate", width: 80, align: "center", sorttype: "date",
formatter: "date", formatoptions: { newformat: "d-M-Y" }, editable: true, datefmt: "d-M-Y",
editoptions: { dataInit: initDateEdit },
searchoptions: { sopt: ["eq", "ne", "lt", "le", "gt", "ge"], dataInit: initDateSearch } },
{ name: "closed", width: 70, align: "center", editable: true, formatter: "checkbox",
edittype: "checkbox", editoptions: {value: "Yes:No", defaultValue: "Yes"},
stype: "select", searchoptions: { sopt: ["eq", "ne"], value: ":Any;true:Yes;false:No" } },
{ name: "ship_via", width: 105, align: "center", editable: true, formatter: "select",
edittype: "select", editoptions: { value: "FE:FedEx;TN:TNT;IN:Intim", defaultValue: "IN" },
stype: "select", searchoptions: { sopt: ["eq", "ne"], value: ":Any;FE:FedEx;TN:TNT;IN:IN" } },
{ name: "note", width: 60, sortable: false, editable: true, edittype: "textarea" },
{ name: "tax", width: 52, editable: true, template: numberTemplate, hidden: true },
{ name: "amount", width: 75, editable: true, template: numberTemplate,
edittype: "custom",
editoptions: {
custom_element: function (value, options) {
return '<input type="text" value="' + value + '"/>';
},
custom_value: function (elem, operation, value) {
if (operation === "get") {
return $(elem).val();
} else if (operation === "set") {
$(elem).val(value);
} else {
return "";
}
},
dataInit: function (elem) {
$(elem).find(">input").spinner({
min: 1,
max: 15
});
}
}},
{ name: "total", width: 60, template: numberTemplate }
],
rowNum: 10,
localReader: { id: "myid" },
rowList: [5, 10, 20],
pager: "#pager",
toppager: true,
gridview: true,
autoencode: true,
ignoreCase: true,
sortname: "name",
viewrecords: true,
sortorder: "desc",
rownumbers: true,
shrinkToFit: false,
height: "auto"
});
// set your defaults for Advanced Searching or filterToolbar
$.extend($.jgrid.search, {
multipleSearch: true,
multipleGroup: true,
recreateFilter: true,
closeOnEscape: true,
closeAfterSearch: true,
closeAfterReset: true,
searchOnEnter: true,
showQuery: true,
overlay: 0,
stringResult: true,
defaultSearch: 'cn'
});
$grid.jqGrid("navGrid", "#pager", {add: false, edit: true, del: false, search: false, refresh: false, view: true, cloneToTop: true});
$grid.jqGrid("editGridRow", "120", {
beforeSubmit: function (postdata) {
alert("postdata=" + JSON.stringify(postdata));
}
}); // edit some row
});
<link href="http://cdnjs.cloudflare.com/ajax/libs/jqgrid/4.6.0/css/ui.jqgrid.css" rel="stylesheet"/>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/themes/redmond/jquery-ui.css" rel="stylesheet"/>
<style type="text/css">
html, body { font-size: 75%; }
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jqgrid/4.6.0/js/i18n/grid.locale-en.js"></script>
<script type="text/javascript">
$.jgrid.no_legacy_api = true;
$.jgrid.useJSON = true;
</script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jqgrid/4.6.0/js/jquery.jqGrid.min.js"></script>
<table id="list"><tr><td></td></tr></table>
<div id="pager"></div>
或者可以更改上面引用的选择器 frmtb+" > tbody > tr > td > .FormElement"
在 jqGrid 代码中为 frmtb + ">tbody>tr>td .FormElement"
.
最后一句话:您应该修复代码中的所有语法错误:删除 */
,包括var
之前editSettings
,替换,
在 delSettings
末尾初始化(直接在 jQuery("#list").jqGrid({...});
之前)到 ;
等等。您应该考虑添加 key: true
到 ID
的定义(通知使用 ID
属性的值作为 rowid)或仅删除不需要的隐藏 'ID'
列(也不要忘记从 colName
中删除相应的项目)并使用 jsonReader: { repeatitems: false, id: "ID" }
.
已更新:我在 the bug report 中用我的建议描述了问题。 。 jqGrid的主要代码现在由Tony修复(参见here)。所以jqGrid的下一个版本(版本更高为4.6.0)应该不会出现所描述的问题。
关于jquery - 在 jqGrid 中使用 jQuery UI Spinner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26115018/
我的 jqgrid 中有一个状态栏。 如果状态为事件,我希望同一行中的另一个单元格为绿色。如果状态为“未激活”,我希望单元格为红色。 如何做到这一点? 截至目前,我已经在“图像”行上创建了一个自定义格
我正在使用 jqgrid 显示服务器中存在的数据如何在鼠标悬停工具提示上显示数据描述。 这是在 jqgrid 上显示工具提示的最佳方式? 最佳答案 鼠标悬停时 jqGrid 中显示的工具提示只不过是相
我有一个 asp.net 项目,它使用 jqgrid 作为 javascript 网格。如何找出正在使用的 jqgrid 版本? 最佳答案 如果您需要以编程方式查询版本,您可以使用: $.jgrid.
有没有办法以编程方式(在 Javascript 中,而不是服务器端)过滤当前显示在 jqGrid 中的数据?所有搜索示例似乎都依赖于使用 jqGrid 自己的搜索 UI,这对我不起作用。例如,我希望能
有没有一种方法可以切换网格的multiselect选项? 如果在创建网格时multiselect不是multiselect,则更改网格的TRUE参数并要求重新加载具有禁用或不创建标题列时将标题留在后面
我在jqGrid中使用列重新排序功能 $grid = jQuery("#list").jqGrid({ sortable:true, ... }); 重新排列列后是否会触发事件?如果有
我正在构建我的第一个ASP.NET MVC 3应用程序并使用jqGrid。我的其中一个列“Flavor Created”是日期列,我想使用DatePicker过滤该列上的网格。当前发生的情况是:用户单
我试图基于选定的行启用导航。因此,用户从jQgrid中选择一行,然后按show(有一个显示网格的按钮,我看到了edit,add等),它需要根据url转到新页面(该行的一部分) )。 $(documen
有没有办法设置 jqgrid 列的固定宽度(最大和最小)? 我已经在 colmodel 中设置了宽度属性,但是如果我调整网格的大小,列正在调整。 最佳答案 不能定义列的最大和最小宽度,但可以使其具有固
我被困在这里-生产前要做的最后一件事。 来自oracle的日期采用以下格式:“ 8/14/2012 10:46:48 AM” 我在jqgrid上使用以下内容: { name: 'CreationDat
我是 jqGrid 的新手,谁能解释一下 jqgrid colModel 中 Index 属性的用途 最佳答案 如果您使用datatype: "json" 或datatype: "xml" 没有额外使
我正在学习 jqGrid,希望最终能将它连接到 Redis 数据库。作为第一步,我正在处理本地数据。这是我必须使用可排序行(在网格中拖放行)。网格出现并且看起来不错,列甚至可以排序,但我无法选择一行并
我想每 5 分钟重新加载一次 jqgrid(给定间隔时间),是否有任何选项/事件。如何做到这一点? 最佳答案 您可以使用setInterval JavaScript函数进行自动刷新 var grid
我正在学习 jqGrid,希望最终能将它连接到 Redis 数据库。作为第一步,我正在处理本地数据。这是我必须使用可排序行(在网格中拖放行)。网格出现并且看起来不错,列甚至可以排序,但我无法选择一行并
大家好,我正在使用 JQ Grid,我得到的日期格式是 2012-09-16T00:00:00,就像这样。我希望日期格式采用 2012-09-16 方式。我试图改变它,但它不起作用。请查看我的代码并告
当我搜索 JQGrid 使用的图标时,我找到了包含所有图标的单个 PNG 文件。我想知道它如何使用图像的一部分作为 JQGrid 中使用的按钮的图标。 最佳答案 jqGrid 使用来自 jQuery
我使用 loadonce 预先获取所有数据,然后在本地进行排序和过滤。 我的列值之一是一个对象数组。在 colModel 选项中,我使用了如下所示的格式化程序函数: function my_forma
我想要在 jqGrid 中右键单击列标题时的列名称。任何代码将不胜感激。 最佳答案 可以绑定(bind)contextmenu事件到所有列标题。每个标题都是 元素等它的 DOM 支持 cellInde
我想计算总计 无需在 calctotal.php 中执行即可即时完成。从本质上讲,这是一个计算列。我想使用一些事件,如 afterInsertRow ,但即使没有事件,它也会将列数据移动一格,因为 X
我有一些数据想在 jqqgrid 中显示。除了添加、编辑和删除之外,还可以对选定记录执行其他操作。我喜欢在该记录的行中有一个用于该操作的按钮/链接的流程。有没有办法在 jqgrid 中添加未绑定(bi
我是一名优秀的程序员,十分优秀!