Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Display Default columns in List view

Avatar

Level 3

Hi all,

I need to display some more columns in the list view of recipients.FirstName, LastName, Email and account are default columns. Without using configure list I need to display few more attributes by default. Could you please guide me what changes need to be done to display new colunms by default. Which Input form modifications need to be done?

ramprakasht3196_0-1599649991931.png

 

Thanks inAdvance

Regards,

Ram.

 

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @ramprakasht3196  ,

We can define 'default columns' in List view using navigation hierarchy.

I saw nms:recipient schema is defined in nms:core navigation hierarchy.

Consider if you wants to add @phone attribute in default column, then you can add it as highlighted below (xpath node) 

 

<nodeModel folderLink="folder" img="nms:rcpFolder.png" label="Recipients" name="nmsRecipient">
        <view name="listdet" schema="nms:recipient" type="listdet">
          <columns>
            <node xpath="@firstName"/>
            <node xpath="@lastName"/>
            <node xpath="@email"/>
            <node xpath="@account"/>

            <node xpath="@phone"/>
          </columns>

Regards,

ParthaSarathy S

View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

Hi @ramprakasht3196  ,

We can define 'default columns' in List view using navigation hierarchy.

I saw nms:recipient schema is defined in nms:core navigation hierarchy.

Consider if you wants to add @phone attribute in default column, then you can add it as highlighted below (xpath node) 

 

<nodeModel folderLink="folder" img="nms:rcpFolder.png" label="Recipients" name="nmsRecipient">
        <view name="listdet" schema="nms:recipient" type="listdet">
          <columns>
            <node xpath="@firstName"/>
            <node xpath="@lastName"/>
            <node xpath="@email"/>
            <node xpath="@account"/>

            <node xpath="@phone"/>
          </columns>

Regards,

ParthaSarathy S