Valentin Plamadeala

Results 27 comments of Valentin Plamadeala

`@import` statements need to be placed in the first css file (from the bundle) on the top (this tool is not moving them for you, at least the current version)...

@mkArtakMSFT you can see a repro here: https://blazorfiddle.com/s/050odzst

@SteveSandersonMS that seems to work, except now I loose all my js binding after `@key` refresh, I suppose that's a different problem

@SteveSandersonMS does Blazor have any client ( JS ) BeforeRender events, this way I could revert my DOM changes right before Blazor.js is doing its thing.

@SteveSandersonMS if there was a js event that will inform that Blazor is about to do some work, I could do something like: `$('#div1').on('blazorBeforeRenderCheck', reverMyDomChanges);`

@SteveSandersonMS think I'll have to stick to supported methods and let my drag and drop blink. btw I tried your code with `blazor.server.js` and it doesn't execute, I presume blazor.server.js...

@SteveSandersonMS I managed to get `refreshIndex` method working, so no more blinking, now I'm binding the js from outside the refreshed div, kind of like `$(document).on(event, selector,` instead of `$(selector).on(event`...

when you call `Mapper.AddMap` you add a map that will be used only when calling: `Mapper.Map(Guid, string)` instead you are calling `Mapper.Map` if you need to map from guid to...

you have multiple options, you can use your injection only in the maps you need it to be used, or instead of using the default static mapper, you create multiple...

Calling `.ToList()` solved the problem for me. I was getting the above error message ( `Collection was of a fixed size. at System.SZArrayHelper.Remove...`) , when I was setting `model.Foos =...