public inbox for [email protected]
help / color / mirror / Atom feed[pgAdmin4][Patch]: Fixed an issue related to the Property dialogue buttons in IE 10
2+ messages / 2 participants
[nested] [flat]
* [pgAdmin4][Patch]: Fixed an issue related to the Property dialogue buttons in IE 10
@ 2016-05-06 13:45 Khushboo Vashi <[email protected]>
0 siblings, 1 reply; 2+ messages in thread
From: Khushboo Vashi @ 2016-05-06 13:45 UTC (permalink / raw)
To: pgadmin-hackers
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
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
Attachments:
[text/x-patch] pgAdamin4_IE10_button_issue.patch (826B, 3-pgAdamin4_IE10_button_issue.patch)
download | inline diff:
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);
^ permalink raw reply [nested|flat] 2+ messages in thread
* Re: [pgAdmin4][Patch]: Fixed an issue related to the Property dialogue buttons in IE 10
@ 2016-05-06 14:30 Dave Page <[email protected]>
parent: Khushboo Vashi <[email protected]>
0 siblings, 0 replies; 2+ messages in thread
From: Dave Page @ 2016-05-06 14:30 UTC (permalink / raw)
To: Khushboo Vashi <[email protected]>; +Cc: pgadmin-hackers
Thanks, applied.
On Fri, May 6, 2016 at 2:45 PM, Khushboo Vashi
<[email protected]> wrote:
> 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
>
>
> --
> Sent via pgadmin-hackers mailing list ([email protected])
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadmin-hackers
>
--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
--
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
^ permalink raw reply [nested|flat] 2+ messages in thread
end of thread, other threads:[~2016-05-06 14:30 UTC | newest]
Thread overview: 2+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2016-05-06 13:45 [pgAdmin4][Patch]: Fixed an issue related to the Property dialogue buttons in IE 10 Khushboo Vashi <[email protected]>
2016-05-06 14:30 ` Dave Page <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox