Per help me getting a single XSP.partialRefreshGet to work. That is working fine for me noe. Thank you. Now I need to get multiple refreshes to work:
XSP.parti
You are missing the id part again (and you had an extra curly brace), Bruce :-)
XSP.partialRefreshGet("#{id:txtRateType}", {
onComplete: function() {
XSP.partialRefreshGet("#{id:CurrentBalancesSection}", {
onComplete: function() {
XSP.partialRefreshGet("#{id:PricingSection}", {});
}
});
}
});
This is client side JS and the functions need client side ids. You use {id: to tell XPages to return the client side id of a server side component.