Attualmente sto usando jQuery per caricare una vista, in questo modo:
$.ajax({
type: 'POST',
url: Drupal.settings.basePath + 'views/ajax',
dataType: 'json',
data: 'view_name=' + viewName + '&view_display_id=default&view_args=' + viewArgument, // Pass a key/value pair.
success: function(data) {
var viewHtml = data[1].data;
target.children().fadeOut(300, function() {
target.html(viewHtml);
var newHeightOfTarget = target.children().height();
target.children().hide();
target.animate({
height: newHeightOfTarget
}, 150);
target.children().delay(150).fadeIn(300);
Drupal.attachBehaviors(target);
});
},
error: function(data) {
target.html('An error occured!');
}
});
Il mio problema è che, ad esempio, se la vista utilizza il modulo "Field Slideshow", i file js / css necessari per funzionare correttamente non vengono caricati. Quale potrebbe essere una bella soluzione (= gattini incolume) a questo?