daaa57150

Results 12 comments of daaa57150

I'm currently looking on how to do that, but I have no idea... Any workarounds before version 4.0 comes out?

I also would like to know that. In the meantime, I'm handling all the toggles myself; ie: I don't use toggle(this) like in the examples, but something like toggleTreeItem(theItem) defined...

I will test it and let you know, but by looking at the code I fear that this works only for a flat model. I'll check, thanks for the answer!...

@Sharaf-Mansour Yep I figured there are some missing features on the Blazor side, and there is no clean solution available for now. I'll see if I can find some time...

Oh good, thanks for you investigation! Please let me/us know if you find something.

I really hope someone can do that

Wow thanks man, I have no idea how to install this but I'm sure this will be integrated in retropie/recalbox (it should).

I have recalbox but it should be approximately the same thing I guess

Same here after updating the OS. It's weird because we tried to debug the script by integrating it in a macos command line project and feeding it the parameters directly,...

This is what I currently have as my SecurityFilterChain: ```Java @Bean public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception { http.authorizeHttpRequests((authz) -> authz.requestMatchers(HttpMethod.GET, "/*").permitAll() .anyRequest().authenticated()); // was using REST only up to...