[Kimchi-devel] [PATCH] [Kimchi] Issue #969: Error message showing up in parent panel rather than modal window in Add Storage
Socorro Stoppler
socorro at linux.vnet.ibm.com
Mon Jul 25 13:58:53 UTC 2016
Reviewed-by: Socorro Stoppler <socorro at linux.vnet.ibm.com>
Tested-by: Socorro Stoppler <socorro at linux.vnet.ibm.com>
On 07/22/2016 02:33 PM, sguimaraes943 at gmail.com wrote:
> From: Samuel Guimarães <sguimaraes943 at gmail.com>
>
> Signed-off-by: Samuel Guimarães <sguimaraes943 at gmail.com>
> ---
> ui/js/src/kimchi.storagepool_add_main.js | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/ui/js/src/kimchi.storagepool_add_main.js b/ui/js/src/kimchi.storagepool_add_main.js
> index eea0f03..3fe2548 100644
> --- a/ui/js/src/kimchi.storagepool_add_main.js
> +++ b/ui/js/src/kimchi.storagepool_add_main.js
> @@ -389,7 +389,7 @@ kimchi.validateForm = function() {
> kimchi.validateDirForm = function () {
> var path = $('#pathId').val();
> if (!/(^\/.*)$/.test(path)) {
> - wok.message.error.code('KCHAPI6003E');
> + wok.message.error.code('KCHAPI6003E','#alert-modal-container');
> return false;
> }
> return true;
> @@ -402,7 +402,7 @@ kimchi.validateNfsForm = function () {
> return false;
> }
> if (!/((\/([0-9a-zA-Z-_\.]+)))$/.test(nfspath)) {
> - wok.message.error.code('KCHPOOL6005E');
> + wok.message.error.code('KCHPOOL6005E','#alert-modal-container');
> return false;
> }
> $('#nfs-mount-loading').removeClass('hidden');
> @@ -420,7 +420,7 @@ kimchi.validateIscsiForm = function() {
>
> kimchi.validateServer = function(serverField) {
> if(!wok.isServer(serverField)) {
> - wok.message.error.code('KCHPOOL6009E');
> + wok.message.error.code('KCHPOOL6009E','#alert-modal-container');
> return false;
> }
> return true;
> @@ -428,7 +428,7 @@ kimchi.validateServer = function(serverField) {
>
> kimchi.validateLogicalForm = function () {
> if ($("input[name=devices]:checked").length === 0 && $("input[name=lvmTmplRadioSelection]:checked").length === 0) {
> - wok.message.error.code('KCHPOOL6006E');
> + wok.message.error.code('KCHPOOL6006E','#alert-modal-container');
> return false;
> } else {
> return true;
More information about the Kimchi-devel
mailing list