We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hello,
i want to put a button in a fixed column to every row.
How to do it?
The text was updated successfully, but these errors were encountered:
Hi Fabryprog
I see that you posted this issue on 5th of Jan but regardless, someone might find this useful. My way of solving that is by doing like this.
$.getJSON( "products.json", function( data ) { $.each( data, function( key, val ) { $("#products tbody").append("<tr><td>" + data[key].id + "</td><td>" + data[key].name + "</td><td><a class='btn btn-primary' href='product.php?show=" + data[key].id + "'>Edit</a></td></tr>"); }); $('#products').dynatable(...........); });
It's probably not the most efficient way of doing it but it works.
Sorry, something went wrong.
No branches or pull requests
hello,
i want to put a button in a fixed column to every row.
How to do it?
The text was updated successfully, but these errors were encountered: