Hi,
I tried the following PS script. As you can see the property "showInFilter" is not changed to True.
PS C:\Program Files (x86)\Zentity\PowerShell scripts\en> $x = Get-ZentityResourceTypeConfiguration Osthus.Model MoleculeProperty
PS C:\Program Files (x86)\Zentity\PowerShell scripts\en> foreach($f in $x.facets)
>> {
>> if($f.propertyName.Equals("TextValue"))
>> {
>> $f.showInFilter = $TRUE
>> echo $f
>> }
>> }
>> Set-ZentityResourceTypeConfiguration Osthus.Model MoleculeProperty $x
>> $x = Get-ZentityResourceTypeConfiguration Osthus.Model MoleculeProperty
>> foreach($f in $x.facets)
>> {
>> if($f.propertyName.Equals("TextValue"))
>> {
>> echo $f
>> }
>> }
>>
ExtensionData : System.Runtime.Serialization.ExtensionDataObject
dataType : LongString
delimiter :
displayName : TextValue
format :
keywordSearch : True
propertyName : TextValue
showInFilter : True
showInInfoPane : True
True
ExtensionData : System.Runtime.Serialization.ExtensionDataObject
dataType : LongString
delimiter :
displayName : TextValue
format :
keywordSearch : True
propertyName : TextValue
showInFilter : False
showInInfoPane : True
Any idea how this can be done?