Help shape the future of CMS PaaS release notes! Take this quick survey and share your feedback.
AI OnAI Off
Help shape the future of CMS PaaS release notes! Take this quick survey and share your feedback.
A ready good article might able to help you https://world.episerver.com/articles/Items/Customizations-of-EPiServer-Commerce-Manager-/
Especially look at how he defined to create a custom view of the warehouses
Hi Dominik,
You can add columns in the pop-up area from database side this change is not possible to update Form View from Business Foundation -> Organization.
e.g. MyColumnName
<?xml version="1.0"?>
<ListViewProfile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Id />
<Name>EntitySelect</Name>
<IsSystem>false</IsSystem>
<IsPublic>true</IsPublic>
<ReadOnly>false</ReadOnly>
<FieldSet>
<string>Name</string>
<string>Description</string>
<string>MyColumnName</string>
</FieldSet>
<Filters />
<Sorting />
<ColumnsUI>
<Column field="Name" width="200px" title="" />
<Column field="Description" width="200px" title="" />
<Column field="MyColumnName" width="200px" title="" />
</ColumnsUI>
</ListViewProfile>
Hi,
I need to extend object search view with some additional columns orther then standard "Name" and "Description" (screenshot bellow)
Going trought xml view I found some user control assosiated to search view: ~/Apps/MetaUIEntity/Pages/EntitySelect.aspx but no xml view connected to that listing.
Is there a way to change the default columns?
Thanks