我正在使用 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);
});
在这里,我必须将第一列添加为复选框。
任何人都可以建议如何做..
提前致谢。