Actions on Listbuilders

Often when creating an action on a custom listbuilder using a SectionField context.  The action doesn't do anything.  If I match it to a column there is no hyperlink and if I don't the the action button available with the chevron is dimmed out.  I am missing something that needs to be be defined in the listbuilder definition?  I haven't noticed anything when comparing to product listbuilders. 

Comments

  • Most likely, you need to add in the column your using as the context as a Required Column in the listbuilder section definition.


    For example:

            <Section ID="06C58EC0-F192-44FA-AED8-9958FEE96DDA" Caption="Test">

              <ListBuilder QueryViewID="ca2a7bc4-999f-480c-a223-150b3514245e">

                <RequiredColumns>

                  <Column Name="ID" />

                </RequiredColumns>

                <RenderStyle>

                  <StandardView />

                </RenderStyle>

              </ListBuilder>


    If your using the Page Designer, there's a Required Columns element witin the listbuilder section when you edit it as well.

Categories