Installation issue
Installation issue
Hi all,
i am using v1.8.2,i am new to it.which steps i should i follow.
here is my code
function showData() {
$.ajax({
type: 'POST',
url: 'CompanyList.aspx/GetCompanyList',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (msg) {
var div = $('#Result').empty().append('IDCOMPANY' +
'ADDRESSEditDelete');
//loop each record
for (var i = 0; i < msg.d.length; i++) {
div.append('' + msg.d[i].ID + '' +
'' + msg.d[i].COMPANY + '' + msg.d[i].ADDRESS + '' +
'Edit' +
'Delete');
}
}
});
} //end of display
i am using v1.8.2,i am new to it.which steps i should i follow.
here is my code
function showData() {
$.ajax({
type: 'POST',
url: 'CompanyList.aspx/GetCompanyList',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: function (msg) {
var div = $('#Result').empty().append('IDCOMPANY' +
'ADDRESSEditDelete');
//loop each record
for (var i = 0; i < msg.d.length; i++) {
div.append('' + msg.d[i].ID + '' +
'' + msg.d[i].COMPANY + '' + msg.d[i].ADDRESS + '' +
'Edit' +
'Delete');
}
}
});
} //end of display
This discussion has been closed.