Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Warning
titlePower Custom Fields PRO™ is becoming Power Custom Fields Premium™Fields™


Power Custom Fields PRO™ is being upgraded to Power Custom Fields Premium™Fields™. We are removing Power Custom Fields PRO™ from the market to focus resources on the combined app, Power Custom Fields Premium™ Fields™ which has all the features of PRO™ and more. Existing Power Custom Fields PRO™ users can get 65% off their new Power Custom Fields Premium™ Fields™ license by following the steps here.


Power Custom Fields PRO offers the following option types:

 

You can use any option type with any type of the custom field. For more information about our custom fields, see pages in the User Guide section.

...

Code Block
string projectKey = "TEST";
string[] componentNames = admGetProjectComponents(projectKey);
number[] componentId;
for(string componentName in componentNames){
    JComponent componentNames = admGetProjectComponent(projectKey, componentName); 
    componentId += componentNames.id;
}
return componentId;

 

This is the SQL script to get all components:

...

 It gets all versions existing in the "TEST" project. The versions will be added as options to the custom field which uses this SIL script as data source. 

 

This is the SQL script to get all versions.

...