cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X

Updating Property Attributes Programmatically

Ascherer17
14-Alexandrite

Updating Property Attributes Programmatically

This answers the question but brings up another for the developers: Is there any chance of adding this functionality to the list of Services available to end users?  Specifically to change Property Category, Data Change Type, etc. via scripting.

1 REPLY 1

Hello,

 

You should be able to get it done via a trivial extension (I didn't test it though):

getProperty("myProperty").getPropertyDefinition().setCategory("newCategory");
getProperty("myProperty").getPropertyDefinition().getDataChangeType(DataChangeType.ALWAYS);

 

/ Constantine 

Top Tags