By default, webapp overview page is like below.
If you want to preview custom fields in the overview page, you need to modify <APPM_HOME>/repository/deployment/server/jaggeryapps/publisher/themes/appm/helpers/splitter.js.
Suppose you added a custom field called "Price" like in this post. Then you have to add below condition inside splitData function of above file.
else if (dataPart[i].name == "overview_price") {
overview_main.push(dataPart[i]);
}
No comments:
Post a Comment