Vas Gábor

Results 13 comments of Vas Gábor

I have a workaround, but I'm not sure if it is applicable in your case. Try to add an additional computed property which explicitly casts the enum to int. ```C#...

AFAIK the `?:` ternary operator is implemented, maybe you can give it a try. Eg. ```C# [Computed] public SomeEnum Prop get { return condition1 ? SomeEnum.One : condition2 ? SomeEnum.Two...

@haydenc: Could you create a fiddle demonstrating the bug? Here's my version (which doesn't throw any error): http://jsfiddle.net/gvas/urLfb/ Thanks!

Aha, now I see the problem, thanks. I have to decide what should I do with this/should I take any actions. Meanwhile, if the only reason to use the buttonset...

These options are bound one-way (viewmodel -> dialog widget). If the viewmodel's property changes then the dialog's option will be also updated, but not the other way around. The dialog...

Making the width and height two-way is simple. The binding could handle the widget's resizeStop event and update the viewmodel when the size changes. Making the position option two-way is...

As of v2.0.1 the _width_ and _height_ options support two-way data binding.

Hmm, it seems that the implementation in your third commit is 70-80% slower than the old one, at least in IE8, see http://jsperf.com/ko-array-indexof It is more standard-compliant, I'll give you...

This error occurs only when the httpMethod is set to 'POST'.

If grunt-saucelabs simply ignores the failed DELETE command then the failed saucelabs job will be probably preserved. This in turn will cause the saucelabs badge/status image to report the build...