Trying another XPages nested partial refresh on multiple items. The refresh is to happen when the combo list box named conTenderType value changes with the onChange event and refreshes the panels ContractWorkflowPanel and ContractDetailPanel. All the panels are in a djTabContainer. There is no requirement for rendering conditions on the target panel components. I have tried the script shown below in the Client javascript for conTenderType onChange event but it doesn't work. I have also tried changing onComplete to onStart etc. Why won't this work?
XSP.partialRefreshPost("#{id:conTenderType}", {
onComplete: function() {
XSP.partialRefreshGet("#{id:ContractWorkflowPanel}", {
onComplete: function() { XSP.partialRefreshGet("#{id:ContractDetailPanel}"); }
})
}
})
Thanks