puschie286

Results 48 comments of puschie286

Hey, because of compatibility problems with our localization system and to reduce external dependencies, we decided drop the subdivision idea as separate project. So im closing this PR and the...

@StefH thanks for the fast response this works for the simplified version - but it throws an exception in the real case example ``` System.InvalidOperationException No generic method 'ThenBy' on...

it seems that its not possible with the native OrderBy and Thenby either. Im currenlty waiting for an answer from the dotnet team, how this can be achieved and will...

yes - the dotnet team said it is by design. "Select" removes all ordering (except if its the last command), so you have to create an object with references to...

We faced the same problem and solved it by using css layers. You need to configure it within the PimeNGConfig ([docu](https://primeng.org/tailwind#override)). Here is our cssLayer config: ```ts cssLayer: { name:...

note: if you delete your filter value (clear the input), its immediately applied (so its behave different than entering) Suggestions: filter is only applied on focus lost (regardless if you...

A (command) queue is a good solution for complex features that are used by multiple services. For a simple "i need to interact with a shared resource", it might be...

Would be great to have something like this - especially when entities have dependencies, processing each event individually lead to problems where the dependency is not available yet (which mean...