This content has been marked as final. 
    
Show                 3 replies
    
- 
        1. Re: RichFaces CDK questionnbelaevski Jan 17, 2008 11:18 AM (in response to phantom)No, you cannot create aggregating component using CDK in such a way. You can put a4j:commandLink renderers into work using delegation pattern, however that neither can't be described using CDK tags. 
 There is no reference for CDK tags yet; grepping sources is the most authoritative way for obtaining information on CDK tags for now.
- 
        2. Re: RichFaces CDK questionphantom Jan 21, 2008 6:14 AM (in response to phantom)I wrote some documentation for CDK template tags. 
 http://dblogs.ru/2008/01/21/richfaces-cdk-template-documentation/
 (Sorry for russian in post:))
 Please correct me if I somewhere wrong... I think this information would be usefull not only for me:)
- 
        3. Re: RichFaces CDK questionnbelaevski Jan 21, 2008 1:28 PM (in response to phantom)Reference is cool, thank you! 
 <ajax:update> tag is used for addition of standalone HTML elements to AJAX update. E.g.:<f:root> ... <div id="#{clientId}">....</div> <ajax:update>#{clientId}AdditionalDiv, #{clientId}HelperDiv, ...</ajax:update> <div id="#{clientId}AdditionalDiv">....</div> <div id="#{clientId}HelperDiv">....</div> </f:root>
 By default only the element that's id == client id is updated during AJAX request.
 
    