I'm pass a order id with leading-zero to function, but in the function, the parameter alway convert to number without leading-zero,What should I do?
formatter:function(value, row, index) {
return "<a href='javascript:listGoods("+'09100089'+")'><i class='fa fa-search-plus' /></a>";
}
function listGoods(id) {
jp.openViewDialog("goodInfo", "${ctx}/order/order/goods?id=" + id, "800px", "500px");
}