Thomas Portelange

Results 153 comments of Thomas Portelange

After reviewing the issue, i think this is linked to this https://github.com/silverstripe/silverstripe-asset-admin/issues/960 and more specifically this part https://github.com/silverstripe/silverstripe-asset-admin/blob/487e62c4550fe187f643e1a8226f840b7e9f9260/client/src/components/UploadField/UploadField.js#L67-L79 where the state is hashed. as far as i can tell, the...

@MLindenhofer this basic issue is that the id is the same and therefore is served the same files from the component. One temporary fix is to set a custom id...

I've opened a distinct issue here https://github.com/silverstripe/silverstripe-asset-admin/issues/1315

I ended up making my own thing with two inputs and setting max/min date according to the other input value

i have the same issue, i need the svg since i only load some of them when using last-icon https://github.com/lekoala/last-icon there must be a way to avoid the size limit...

This seems to work well at first glance, it might require further checks to make sure it works as expected :)

yep, same here from 1.1.1 to 1.1.4

yes, that's because when you replace the data, you empty all the rows (table has height 0, and page scroll), then insert it again. i had the exact same issue....

yes, actually it would be pretty simple to add the logic into the core, i did something similar for the datatree plugin where it goes like this. Leaving this for...

So i've made a better solution that doesn't require hacking // Fix table size on full redraw tabulator.on("renderStarted", () => { tabulator.element.style.minHeight = tabulator.element.offsetHeight + "px"; }); tabulator.on("renderComplete", () =>...