donkeyDau

Results 13 comments of donkeyDau

You need some logic in your server to take the request of `paper1.zip`, query the details of the folder content from s3 and pass the reply to `mod_zip` as described...

Further investigations led to a slightly different picture. I have two types of requests: one is carrying a POST body, the other not. Without the POST body I see no...

Yes. Same here. I'm using AOKP with Android Pie and News 0.9.9.25 from FDroid. After reboot the sync works. Switching in flight mode disables the sync somehow. The throbber is...

Have a look at https://react-bootstrap-table.github.io/react-bootstrap-table2/storybook/index.html?selectedKind=Sort%20Table&selectedStory=Sort%20Events&full=0&addons=1&stories=1&panelRight=0&addonPanel=storybook%2Factions%2Factions-panel There is a code shown that might match your needs: ``` const columns = [{ dataField: 'id', text: 'Product ID', sort: true }, { dataField:...

Have a look at https://react-bootstrap-table.github.io/react-bootstrap-table2/storybook/index.html?selectedKind=Sort%20Table&selectedStory=Custom%20Sort%20Fuction&full=0&addons=1&stories=1&panelRight=0&addonPanel=storybook%2Factions%2Factions-panel it shows a sort function ``` const columns = [{ dataField: 'id', text: 'Product ID', sort: true, // here, we implement a custom sort which...

Sorry for not ready your question carefully enough. Could you provide a working minimal example on JsFiddle (or somewhere else)?

I love it! Do you have any (rough) estimate when you'll release v6?

Maybe this helps? ``` import { PathFindingLinkFactory } from '@projectstorm/react-diagrams'; const reroute = (engine) => { engine .getLinkFactories() .getFactory(PathFindingLinkFactory.NAME) .calculateRoutingMatrix(); }; ```

See https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/1634#issuecomment-1513062293 maybe you'll find a solution.

See https://github.com/react-bootstrap-table/react-bootstrap-table2/issues/1634#issuecomment-1513062293 maybe you're able to find a solution based on that.