You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am making a project in which I want to use footable as my table for employees. The table have a very basic configuration. What I want now is to put an action column for delete. I want to put my own delete option rather than the built-in one.
part of the code that i need below that I want it work.
$(".footable").footable();
//get the footable object
var table = $(".footable");
var footable = $(table).data("footable");
var lastRow = $(table).find("tbody tr:last");
footable.removeRow(lastRow);
When I try that code it says that footable is not defined.
can someone help me pls
thank you
The text was updated successfully, but these errors were encountered:
with much searching I was able to get the footable instance by following one example found here in the github. But i have another issue in which when I tried to delete a row. it says that 'deleteRow' is not a function.
can someone help me?
All I want is to customize my edit/delete option on my footable.
Hello everyone,
I am making a project in which I want to use footable as my table for employees. The table have a very basic configuration. What I want now is to put an action column for delete. I want to put my own delete option rather than the built-in one.
I am following this code below unfortunately it is no longer working with the latest version 3x.
http://embed.plnkr.co/PYELgBc0xOpvH4lePXKu/
part of the code that i need below that I want it work.
When I try that code it says that footable is not defined.
can someone help me pls
thank you
The text was updated successfully, but these errors were encountered: