Inside Activate
Assets
Hide the Owner Column in the OwnerOf Asset List
5 min
overview control which columns are displayed in the ownerof assetinstancelist on user properties by configuring the displayflags attribute this allows removal of redundant columns such as owner , which is implicit in this context prerequisites access to edit forms familiarity with the web user propertiesfull form an existing assetinstancelist bound to =/ownerof/assets steps open the web user propertiesfull form for editing locate the assetinstancelist element that uses the ownerof data source modify the displayflags attribute to explicitly define the columns to display, excluding owner save the form example configuration default configuration \<assetinstancelist id="as of" displayflags="defaultowner" datasource="=/ownerof/assets" enableviewstate="false" zerocounttemplate="the user does not own any assets " allowselect="false"> \</assetinstancelist> updated configuration with the owner column removed \<assetinstancelist id="as of" displayflags="name,status,costcentre,properties,services,showserviceuser,loadlistdefaults,showcategories,showdescription" datasource="=/ownerof/assets" enableviewstate="false" zerocounttemplate="the user does not own any assets " allowselect="false"> \</assetinstancelist> result the owner column is no longer displayed in the asset list all remaining columns continue to function as configured additional notes the default displayflags="defaultowner" includes a predefined set of columns to customize visibility, replace it with a comma separated list of specific flags only the columns specified in displayflags will be shown the available flags include name owner status costcentre properties services showserviceuser showcategories showdescription loadlistdefaults displayflags must be explicitly defined to remove individual columns from the default configuration