if (href) {
a.removeAttribute('href');
return ajax(href, function (request) {
- document.getElementById('table').innerHTML += request.responseText;
- var rows = 0;
- request.responseText.replace(/(^|\n)<tr/g, function () {
- rows++;
- });
- if (rows < limit) {
+ var tbody = document.createElement('tbody');
+ tbody.innerHTML = request.responseText;
+ document.getElementById('table').appendChild(tbody);
+ if (tbody.children.length < limit) {
a.parentNode.removeChild(a);
} else {
a.href = href.replace(/\d+$/, function (page) {
Display select SQL edit form inline
Compatibility with MySQL 5.6
Recover original view, trigger, routine if creating fails
+Allow loading more data with inline edit (bug #3605531)
Disable autocapitalize in identifiers
Indeterminate state of select all checkboxes