Closed sama55 closed 8 years ago
Well, there is no direct callback for this. BUT, after lobipanle is initialized you can select the reload button and attach click listener to it and do whatever you want.
Thank you for your response. But, can I fetch event on my high level javascript? This is because, probably, I think that lobipanel call stopPropagation() in lobipanel.js. What do you think?
I am almost sure that you will be able to fetch event.
I tried to fetch event with on("click")" function of the jQuery. But, unfortunately, event did not fire. What about on your environment?
This code works fine for me
$('.lobipanel').eq(0).find('[data-func=reload]').on('click', function(){
console.log("Works!!!!");
});
I will try it. Thanks arboshiki!
I was able to fetch reload event. Thank you so much.
I want to refresh panel content with my Ajax process without loadUrl option. Is there event that is triggered when reload button is clicked?