Please Help Me
$("#line_items_into_table").footable({}, function (ft) {
SetTableRowinJson(json);
})
Please Help Me
$("#line_items_into_table").footable({}, function (ft) {
SetTableRowinJson(json);
})
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Ashwin ChauhanPosted Oct 22, 2021, 1:26 PM
I am using this function.
function GetTableRowValueJson() {
var data = $('.actual_list').map(function () {
return {
id: $(this).find('.customermeta-id').first().val(),
Name: $(this).find('.customermeta-name').first().val(),
birthday: $(this).find('.customermeta-detail').first().val(),
anniversarydate: $(this).find('.customermeta-anniversary').first().val(),
mobileno: $(this).find('.customermeta-sms').first().val(),
email: $(this).find('.customermeta-email').first().val(),
}
}).get();
return JSON.stringify(data);
}
Sachin SinghPosted Oct 22, 2021, 12:04 PM