Simon Bobrov
Simon Bobrov
We're in the same situation and it is not fully clear what is the difference between normal (the not existing one) http and "debug" http ports? Is this just about...
Well, if there is a way to disable those two endpoints - Prometheus monitoring of proxied requests (/metrics on debug endpoint) - Request (/debug/requests) and connection tracing endpoints (/debug/events) then...
1 Gbit internet on both clients and such a poor quality... This feature is really about reading texts and / or code at someone's screen. This is even worse than...
Please have a look at #197
You can use @angular/cdk drag and drop implementation https://material.angular.io/cdk/drag-drop/overview It is quite easy to use, very flexible and created by Angular team specifically for Angular. That's what I am using...
Hi @runninghare have you tried to pass those multidrag options to sortablejsOptions? Looks like it should work right away
Hi @sorinfratila that's a long story. The concept of the plugins is not really this-lib-friendly. The full story is here https://github.com/SortableJS/Sortable/pull/1548 However if you try this in e.g. `main.ts` ```ts...
hi @gregAnd the `store` is not recommended for angular. Instead, just listen to the onUpdate / onAdd / onRemove (depending on what you have) event and save your items in...
hi @jjreisfl yes, it is. In case your item comes from the same sortable container then use `onUpdate` event (e.g. see example from demo https://github.com/smnbbrv/angular-sortablejs-demo/blob/master/src/app/examples/sortable-with-options/sortable-with-options.component.ts#L36) This event will give you...
hi @t3rror23 try to log the array as `console.log(JSON.stringify(your_array_here))`. This will actually give you the best answer what is going on. If the array is empty here then something is...