Adam Kauffman

Results 96 comments of Adam Kauffman

I was also seeing this in unit testing due to rapid calls to: ```c# IScheduler scheduler = await SchedulerBuilder.Create("Test", "Scheduler") .UseDefaultThreadPool(options => options.MaxConcurrency = 1) .UseInMemoryStore() .BuildScheduler(); ``` I am...

These solutions are not working for me either. I tried on just a `MudDataGrid` then I put it inside a `MudPaper` and tried layering the techniques in every which way....

After struggling with manually applied style, as discussed earlier here, I found some `MudDataGrid` options that help. ``` ``` **Height="calc(100vh - 13rem);"** This is what creates the desired behavior and...

Those are the two settings you need. Declaring a height is what gets the behavior OP asked for. What you set your height to is an exercise for the reader....

After pointing to a closed issue that points to another closed issue. The answer seems to be "framework". It's Electron. Let's face it, when you're developing a desktop app with...

@thundron I think the use case for Electron is when you want to make a web application and also offer a local version using the same code base. It then...

I was looking for an analogue to an event found in MSAcess called `BeforeUpdate(Cancel As Integer)` which gives you that cancel token as well as access to an `.OldValue` property....

It might be easier to review and merge #50 first, as this one is building upon that same branch.

Have you tested my branch? You can review the code yourself and use my version until this is accepted.