Hi, In IE (ver: 10), the Save/Reset buttons are not getting enabled even after changing the fields.
Please find the attached patch for the same. Thanks, Khushboo
diff --git a/web/pgadmin/browser/templates/browser/js/node.js b/web/pgadmin/browser/templates/browser/js/node.js index 5810e74..6289c2d 100644 --- a/web/pgadmin/browser/templates/browser/js/node.js +++ b/web/pgadmin/browser/templates/browser/js/node.js @@ -787,8 +787,8 @@ function($, _, S, pgAdmin, Menu, Backbone, Alertify, pgBrowser, Backform) { var updateButtons = function(hasError, modified) { var btnGroup = this.find('.pg-prop-btn-group'), - btnSave = btnGroup.find('button[type="save"]'), - btnReset = btnGroup.find('button[type="reset"]'); + btnSave = btnGroup.find('button.btn-primary'), + btnReset = btnGroup.find('button.btn-warning'); if (hasError || !modified) { btnSave.prop('disabled', true);
-- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers