mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Support tab navigation in dialogs. Fixes #2898
This commit is contained in:
committed by
Dave Page
parent
3be22383b8
commit
aa1849c13a
@@ -89,8 +89,10 @@ define([
|
||||
cell: Backgrid.Extension.SelectRowCell.extend({
|
||||
render: function() {
|
||||
|
||||
// Use the Backform Control's render function
|
||||
Backgrid.Extension.SelectRowCell.prototype.render.apply(this, arguments);
|
||||
// Do not use parent's render function. It set's tabindex to -1 on
|
||||
// checkboxes.
|
||||
this.$el.empty().append('<input type="checkbox" />');
|
||||
this.delegateEvents();
|
||||
|
||||
var col = this.column.get('name');
|
||||
if (this.model && this.model.has(col)) {
|
||||
|
||||
Reference in New Issue
Block a user