Does anyone know if it's possible to control the o...
# sdf
c
Does anyone know if it's possible to control the order of custom center categories on a custom center tab when deployed via SDF?
m
You have to manually order them in the deploy.xml. I group my objects in a separate folder. When updating, the order is not usually updated from my experience
Copy code
<deploy>
    <files>
        <path>~/FileCabinet/SuiteApps/com.xxx.xxx/*</path>
    </files>
    <objects>
        <path>~/Objects/main/*</path>
        <!--        Must deploy center categories individually for order-->
        <path>~/Objects/ordered/center/custcentercategory_one.xml</path>
        <path>~/Objects/ordered/center/custcentercategory_two.xml</path>
        <path>~/Objects/ordered/center/custcentercategory_three.xml</path>
    </objects>
</deploy>
c
Aha, hadn't even thought about using the deploy.xml to facilitate this. Many thanks!