Ниже мой код, «данные» - это массив объектов, я хочу обновить footable без перезагрузки страницы.
Я пробовал
FooTable.get('#tbMembers').loadRows(data)
, но это не работает
FooTable.init('#tbMembers', {
"columns": [{
name: 'Name',
style: {
'display': 'table-cell',
'text-align': 'left'
}
}, {
name: 'Ward',
style: {
'display': 'table-cell'
}
}, {
name: 'District',
style: {
'display': 'table-cell'
}
},{
name: 'Provincial',
style: {
'display': 'table-cell'
}
}, {
name: 'Status',
class: 'footable-last-visible',
style: {
'display': 'table-cell'
}
}, {
name: 'PassTest',
class: 'footable-last-visible',
style: {
'display': 'table-cell'
}
}, {
name: 'score',
style: {
'display': 'table-cell',
}
}],
'rows': data,
});