-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
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
Return false from ui.Confirmation callback cancels dialog close #48
base: master
Are you sure you want to change the base?
Conversation
a more flexible approach would be to allow overriding the default .ok click handler, for async validation etc |
Is this currently supported ? |
not currently in the API nope |
Great. In fact, I'll be needing support for that in a later part of my codebase, so I'll send another pull request once implemented. |
i cant think of a great API off-hand but I know a return short-circuit will be leaky, we could have both since this is tiny anyway but async would be nice |
Fair enough. Are you saying what's currently implemented here in this pull request is leaky ? |
just in the sense that it's not flexible, but it might compliment the async one fine depending on the API, if the API for the other one is nice then we wont need two |
What about a mild extension of providing a callback as it stands. In addition to supporting new ui.Dialog().show(function () { }); Also, optionally support: new ui.Dialog().show({
ok: function () {},
cancel: function () {}
}); This would be backward compat, and fairly intuitive. In the case that either ok or cancel are not supplied, use the default. |
Actually, does it make more sense to just supply an optional 'async' second argument to show() ? new ui.Confirmation().show(function () {}, true); |
Yyyeah, so I didn't realize this pull req stuff would update when I pushed my commit. Anyway, here's what I would propose for support more configurable behaviour of the Confirmation callback. |
Of any relevance, I work with JPJoyal. :) We were discussing how to not close a confirmation dialog (for example, if the input of a form needs to be validated). The logical presumption was that you could return false from the callabck -- aka, have it react similarly to event callbacks. But nope.
Maybe an explicit design decision, so obviously feel free to reject this request if you no likey.