I'm struggling with aligning two buttons in a grid panel with a bottom toolbar:
this.bbar = [
"->",
{
text:"<font color = white><b>Save</b></font>", itemId:"save",
},
"<-",
{
tooltip:"Back to Home Screen", itemId:"backhome", text:"<b>< back</b>"
}
];
Despite using the right arrow to move the save button to the far right, adding a left arrow <- did not center the two buttons as expected. Instead, both buttons are pushed to the right and the left arrow remains visible leading me to believe that "<-" is not applicable.
Could you suggest an alternative approach I could take to properly center my two buttons?
Thank you for your help.