How does skuid handle session timeout when using table filters, pagination, etc.?

BTW, for others who may want to use this there’s a minor typo and you need to add the anonymous function call to complete it: (function(){ skuid.$(function(){ var originalOnError = Visualforce.remoting.Util.error; Visualforce.remoting.Util.error = function(a,b){ // If and only if we get the characteristic user-has-been logged out message, // send the user to a custom login page if (b&&(b.message.indexOf(‘Logged in?’)!==-1)){ window.top.location = ‘https://login.salesforce.com’; } else { // Perform the normal behavior originalOnError && originalOnError(a,b); } } }) })();