I have a form with 6 different Custom Controls. Within each of these CCs are panels that render or not based on a set of values from the first CCs. How can I refresh all of them at the same time with a Partial Refresh (I do not want to do a Full Refresh) once the set of values is answered?

link|improve this question

69% accept rate
feedback

2 Answers

Put all your CC inside a div or panel and refresh that or use this from tim tripcony

http://www.timtripcony.com/blog.nsf/d6plinks/TTRY-84B6VP

link|improve this answer
feedback

If you put all your custom controls in different dynamic Content control using extLib you can refresh them all using client or server side events.

XSP.showContent("dyn1","cc1");
XSP.showContent("dyn2","cc2");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.