You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to popup a Laravel 4 blade template view?
I have looked at:
$('element_to_pop_up').bPopup({
contentContainer:'.content',
loadUrl: 'test.html' //Uses jQuery.load()
});
but not sure why having the "element_to_popup" selector?
I do not want to popup the element contents. But an true external blade template view.
If I may give an example by means of pseudo code:
function showCreateCarsWindows() {
$().popup({
url: '/views/cars/create.blade.php
}).onClose(function({
//get the new carid (PK) that was inserted and select it in my select list (dropdown) as default
});
}
Please advise :)
Thanks in advance
The text was updated successfully, but these errors were encountered:
Hey @Marius0188
Sorry for the really really really late response :(
Thats not possible at the moment. You have at least to have a placeholder like ('element_to_pop_up') but more people have requested the feature. Will try to implement it in next release
Hi there,
Is it possible to popup a Laravel 4 blade template view?
I have looked at:
$('element_to_pop_up').bPopup({
contentContainer:'.content',
loadUrl: 'test.html' //Uses jQuery.load()
});
but not sure why having the "element_to_popup" selector?
I do not want to popup the element contents. But an true external blade template view.
If I may give an example by means of pseudo code:
function showCreateCarsWindows() {
$().popup({
url: '/views/cars/create.blade.php
}).onClose(function({
//get the new carid (PK) that was inserted and select it in my select list (dropdown) as default
});
}
Please advise :)
Thanks in advance
The text was updated successfully, but these errors were encountered: