• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

Resolved CustomButtons order

jimlongo56

Basic Pleskian
Is there no way to order CustomButtons that are in the Toolbar. "order" seems to have no effect. The button always appears first.

And is there a way to assign an ID. it seems to always be id=[0].

Code:
            'place' => [self::PLACE_TOOLBAR],
            'order' => 4,

Thanks.
 
I found a hack that helped, here it is in case anyone is looking for something similar.
Using the param 'id' will change the id=[0].
At this point the button goes last in the toolbar not first.
Any ID will do the same thing, there doesn't seem to be any logic or ordering going on.


Code:
            'place' => [self::PLACE_TOOLBAR],
            //'order' => 1,
            'id' => 'aaaaaaaa',



without this hack the html looks like this and puts my Get Started button first
Code:
    <ul class="dropdown-menu pull-right">
        <li style="display: none;"><a id="0" href="" class="my-button"> Get Started</a></li>
        <li style="display: none;"><a id="buttonAddDomain" href="/smb/web/add-domain" class=""> Add Domain</a></li>
        <li style="display: none;"><a id="buttonAddSubDomain" href="/smb/web/add-subdomain" class=""> Add Subdomain</a></li>
        <li style="display: none;"><a id="buttonAddDomainAlias" href="/smb/web/add-domain-alias" class=""> Add Domain Alias</a></li>
    </ul>


If I change the id it now appears last in the list
Code:
    <ul class="dropdown-menu pull-right">
        <li style="display: none;"><a id="buttonAddDomain" href="/smb/web/add-domain" class=""> Add Domain</a></li>
        <li style="display: none;"><a id="buttonAddSubDomain" href="/smb/web/add-subdomain" class=""> Add Subdomain</a></li>
        <li style="display: none;"><a id="buttonAddDomainAlias" href="/smb/web/add-domain-alias" class=""> Add Domain Alias</a></li>
        <li style="display: none;"><a id="aaaaaaaaMYBUTTON" href="" class="my-button"> Get Started</a></li>
    </ul>
 
Last edited:
Back
Top