Nico Hoffmann ෴.
Nico Hoffmann ෴.
@afbora did my previous changes cause the problem you just fixed? and we probably should recompile list files then again.
Time validates `hours:minutes` - as in time of day. So 32 hours isn't a valid time.
I'm a bit torn here - the table index number is actually not the `num` of pages or the `sort` of files. That would become rather problematic e.g. with page...
One option could be to actually get rid of the # column when using table in sections and put the sort handles in the preview image column on hover.
@bastianallgeier in one of my earlier versions I had this working > put the sort handles in the preview image column on hover. Wasn't too much work, a bit of...
# Summary ## Sections: hide index column and move drag handle outside - hiding the column and moving sort handles outside isn't trivial as we are using an actual HTML...
Of course, but "making it look like it's outside the table visually" is the issue: table border/shadows etc. don't work then properly anymore.
> Why can’t the sort handle be grabbed when moved outside the table? Do you have a demo? Tried it locally, didn't work. `overflow: visible` and then positioning left outside...
Have you actually tried this? My code: ``` css .k-table-index-column { overflow: visible; width: 0; padding: 0; background: transparent; } .k-table-sort-handle { margin-inline-start: -1rem; } ``` Doesn't work: https://user-images.githubusercontent.com/3788865/191525503-a7f42dcc-b5c1-4ee5-a34d-f6a084757af6.mov
Thanks for trying to help! I am using the `develop` branch https://github.com/getkirby/kirby/tree/develop - only added a `k-table-items` class here to better target the specific table: https://github.com/getkirby/kirby/blob/develop/panel/src/components/Layout/Items.vue#L8 This somewhat helped: I...