cancel
Showing results for 
Search instead for 
Did you mean: 

Item Routing Configuration Interface

The column widths in the Item Routing interface cannot be resized and do not scale to view; as a result, we're limited to ~10-15 characters per 'cell', depending on which characters are used (the font is not monospaced). Given we have 50+ item routing rules in some cases to accomodate various dining options, it's nearly impossible to manage with this restriction.

Request is to allow either resizable columns to accomodate longer text, concatenate all text for a 'cell' in a hover-over, enable sorting, or allow drill-down into a rule to see the whole rule all-at-once.

1 ACCEPTED SOLUTION

rcmck
Dessert II

You could use a chrome extension called stylebot to make changes to the pages css to fix the issue (they are only local changes, would need to do it again if you open the page on another computer) 

Open the stylebot extension on the page you want to edit, choose the code tab at the bottom, click the element selection tool and then select the text box you want to change.

Screenshot 2024-10-12 212828.png

Should load this into the editor

-2.png

Then just change the width to whatever you prefer, and close the extension, will stay that way anytime you open the page until either you change it or remove the extension.

css3.png

View solution in original post

4 REPLIES 4

Rob
Community Manager
Community Manager

Thanks for this feedback. Is it possible to attach a screenshot of what you are speaking about by chance? 



Robert Anderson, Community Manager
Toast

See below screenshot - Enterprise item routing is really a nightmare with the current interface (will check the stylebot option, obviously not an ideal solution)

Across all locations (~25), I suspect we have ~200-400 entries; it's impossible to know what any given line does with abbreviated names and columns... Using the drop downs also don't help much when there's dozens of prep stations (including store versions).

nwallace_0-1755787978783.png

 

If you do try the stylebot, I found a better option to just make it span the whole width of the page rather than targeting the individual text boxes, since you have the added columns from being MLM

body.global-header .container 
{
  max-width: 100%;
}

just enter that into the code section of stylebot when on the toasttab site, this will probably affect some of the other pages on the site as well, but if it causes any issues you can just toggle it off. 

Screenshot From 2025-08-21 15-05-54.png

rcmck
Dessert II

You could use a chrome extension called stylebot to make changes to the pages css to fix the issue (they are only local changes, would need to do it again if you open the page on another computer) 

Open the stylebot extension on the page you want to edit, choose the code tab at the bottom, click the element selection tool and then select the text box you want to change.

Screenshot 2024-10-12 212828.png

Should load this into the editor

-2.png

Then just change the width to whatever you prefer, and close the extension, will stay that way anytime you open the page until either you change it or remove the extension.

css3.png