When dealing with huge racks that are very full its often a pain to perform tiny rearrangements
it would be great to workaround this by temporary injecting empty rows and remove them again
something like thisRow functions ├── Swap Rows │ ├── Row 1 │ │ ├── with Row 2 │ │ └── with Row 3 │ ├── Row 2 │ │ ├── with Row 1 │ │ └── with Row 3 │ └── Row 3 │ ├── with Row 1 │ └── with Row 2 ├── Move Row │ ├── Row 1 │ │ ├── to position 2 │ │ └── to bottom │ ├── Row 2 │ │ ├── to top │ │ └── to bottom │ └── Row 3 │ ├── to top │ └── to position 2 ├── Insert empty row │ ├── 3U │ │ ├── top │ │ ├── between rows 1 & 2 │ │ ├── between rows 2 & 3 │ │ └── bottom │ └── 1U │ ├── top │ ├── between rows 1 & 2 │ ├── between rows 2 & 3 │ └── bottom └── Remove empty rows ├── all ├── empty row y └── empty row x
-- modular01
@modulargrid have you ever considered to implement this feature (at least the move row functionality)? It shouldnt be that time consuming!? i am still willing to help out.
...filter/sort "My Modules" to only show modules not currently used in the displayed rack...
-- proppy
...A filter on "My Modules" to show only modules not in the current rack would be very helpful when contemplating swaps...
-- gimbalgambit
...I wish I could filter/sort by whether a module is in the rack I am currently viewing...
-- adamj
@proppy @gimbalgambit @adamj & many more who requested this feature within the last years
As an ugly workaround you can open the javascript console of your browser and execute this snippet:
Hide modules that are already in the rack
$('.box-module').show(); $('.box-module.in-rack').hide();
Hide modules that are not in the rack
$('.box-module').show(); $('.box-module:not(.in-rack)').hide();
But be aware that this only applies to already displayed modules! So you may have to scroll down after clicking My modules