Except during my event processing my buttons keep disappearing, which is rater annoying, to say at least.
Couple of hours later I finally found a crude but working solution. I just create a simple event handler, which re renders all by buttons...
$(document).ajaxComplete(function() {
$("input:submit, a.button, input:button, div.qq-upload-button").button()
});
$(document).ready(function() {
$("input:submit, a.button, input:button, div.qq-upload-button").button()
});
No comments:
Post a Comment