我正在使用JavaScript和JSON按需实现网格视图加载。
function OnSuccess(response) {
debugger;
var xmlDoc = $.parseXML(response.d);
var xml = $(xmlDoc);
pageCount = parseInt(xml.find("PageCount").eq(0).find("PageCount").text());
var customers = xml.find("Quotes");
$("[id$=gridPolicyNumbers] .loader").remove();
customers.each(function () {
var customer = $(this);
var row = "<tr>" +
**"Place check box code here"**+
"<td>" + customer.find("PolicyNumber").text() + "</td>" +
"<td>" + customer.find("QuoteNumber").text() +
"</td><td>" + customer.find("InsuredName").text() +
"</td><td>" + customer.find("EffectiveDate").text() +
"</td><td>" + customer.find("ExpireDate").text() +
"</td><td>" + customer.find("LineCode").text() + "</td>"
+ "</tr>";
$("[id$=gridPolicyNumbers]").append(row);
//alert(row.text);
});
这里我必须添加第一列作为复选框。
任何人都可以建议怎么做..
提前致谢。
答案 0 :(得分:1)
代替**"Place check box code here"**+
您需要做的就是:
"<td><input type='checkbox' name='check1' value='Check Me'/></td>"
答案 1 :(得分:0)
"<td><input type='checkbox' /></td>"