London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Commerce Manager - Extend Object Search View

Vote:
 

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

#228539
Sep 29, 2020 6:25
Vote:
 

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 

#248462
Feb 10, 2021 20:00
Vote:
 

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.

  • Go to -> mcweb_ListViewProfile [Table]
  • Update the XML for 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>
#248568
Edited, Feb 13, 2021 0:24
Vote:
 

Thank you, I will try to update on database directly.

#248617
Feb 15, 2021 7:41
Sanjay Kumar - Feb 16, 2021 17:47
Hey Dominik, did you get the desired result after the updating XML into database?
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.