Jump to content
  • 0

Ошибка при нажатии на Cancel


mstdmstd
 Share

Question


Всем привет,

Откройте пожалуйста link (там логин уже введен на странице логина)
то на 1й(дефолтовой закладке)
Кликнув мышкой на кноке машины( справа от лейбла "Shipping") открывается модальное окно и успешно завкрывается если нажать на кнопку Cancel

Но если открыть модальное окно выше рядом с лейблом “Category(ies)” и в открывшемся модальном окне нажать на кнопку Cancel то в консоле выскакивает ошибка
 

bootstrap.min.js:6 Uncaught Error: Modal is transitioning



Модальные окна имеют схожую структуру и вызываются аналогично :

backendProduct.prototype.loadProductShipping = function () {
var href = this_backend_home_url+"/admin/product/load_product_shipping?product_id="+this_id;
$.ajax({
url: href,
type: 'GET',
dataType: 'json',
success: function(result) {
// alert( "loadProductShipping result::"+var_dump(result) )
if (result.error_code == 0) {
$("#product_shipping_shipping_class_id").val( result.productShipping.shipping_class_id )
$("#product_shipping_weight").val( result.productShipping.weight )
$("#product_shipping_length").val( result.productShipping.length )
$("#product_shipping_width").val( result.productShipping.width )
$("#product_shipping_height").val( result.productShipping.height )
$("#div_product_shipping").modal({
"backdrop": "static",
"keyboard": true,
"show": true
});
// alert( "$(#product_shipping_shipping_class_id).val()::"+$("#product_shipping_shipping_class_id").val() )
$("#product_shipping_shipping_class_id").focus()
}
if (result.error_code > 0) {
alertMsg( result.error_message, 'Loading error!', 'OK', 'glyphicon glyphicon-remove' )
}
}
});

}


и :

backendProduct.prototype.loadProductCategories = function () {
var href = this_backend_home_url+"/admin/product/load_product_related_categories?product_id="+this_id;
// backendProduct.switchProductRelatedCategoriesLoader(false)
$.ajax({
timeout: 10000,
async :false,
url: href,
type: 'GET',
dataType: 'json',
success: function(result) {
// alert( "loadProductCategories result::"+var_dump(result) )
if (result.error_code == 0) {
// backendProduct.switchProductRelatedCategoriesLoader(true)
$("#div_product_related_categories_list").html(result.html)
$("#div_product_related_categories").modal({
"backdrop": "static",
"keyboard": true,
"show": true
});

// $('#multi_categories_list').multiSelect( {
// multiple: false,
// header: "Type",
// noneSelectedText: "Type",
// selectedList: 1
// } );

// $("#multi_categories_list").multiSelect('refresh');
// $("#multi_categories_list").focus()
//
// var deviceParams= effectiveDeviceWidth()
// // alert( "deviceParams::"+var_dump(deviceParams) )
// if ( parseInt(deviceParams.width) <= 600 ) {
// $("#ms-multi_categories_list").css('width', deviceParams.width - 30);
// } else {
// $("#ms-multi_categories_list").css('width', deviceParams.width - 60);
// }
}
}
});

В чем разница и как побороть ошмибку?

Спасибо!

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy