How do I create a "Method" to update an "Extended Classification" property?

I created an "Action" which has a method that reads:

this.setAction("edit");
this.setProperty("xp-monthly","1");
this.apply();
return this;

Does anyone know how to modify an "Extended Property"?

Parents
  • Ddidonato,

    Your method code looks like it's on the right track. What issue are you having? You haven't mentioned how your action is configured, so if you aren't seeing the action in your ui I would go to an ItemType you want to be able to use this with and add your new action to the list of Actions for the itemtype. (Actions relationship tab, select button, then search for the new action by name.) If you've gone that far, you should at least get an error with a bit more information.

    Skyler C.

  • Skyler,

    The action is configuration is fine. It doesn't work with the "extended classification" property. If I add (this.setProperty("name","test");) to the method, the name changes to "test', but the extended property still doesn't change. I get no error messages. I'm not sure if extended classifications are handled different.  TY

Reply Children