galmok

Results 39 comments of galmok
trafficstars

@krzyhan I tried your directive and it works. Now, however, I need to expand on it to make it conditional. I want it to be able to parse a query...

I could have used this functionality. I have several groups, but can only allow 1 selection from each group. Next to impossible to implement as it is now.

I found the hidden 'feature' in the settings object called smartButtonTextProvider which is called with the selected-model array when the button is to be drawn (if the selected model is...

This would be a nice feature. Usually an item from a dropdown list must be selected and if we start the dropdown with one item selected, all the user can...

This could have been implemented if the event callback on item deselect could signal that the deselect is not allowed/should be ignored.

Too bad this isn't there yet. I feel this really needs to be there to make imap-backup truly useful. Regarding backwards compatibility, can't the imap file have this information as...

How about using SemaphoreSlim to ensure only 1 active call to yield.Returning is happening at anyone time? I tried and it seems to work just fine. But I'll have a...

I created a test setup showing this: ``` public class Foo { public string MyStr; public DateTime MyDate; } ``` ``` public class FooComparer : IComparer, IEqualityComparer { public int...

For reference, the above gives this exception: > System.NullReferenceException: Object reference not set to an instance of an object. At his line in FooComparer: `if (x.MyDate > y.MyDate)` where x...

If I enable the commented lines in the comparer that handle the null values, I get null value instead of Foo objects when calling Peek. Is my comparer faulty with...