Indri Muska

Results 42 comments of Indri Muska

PR stands for Pull Request ([read more](https://help.github.com/articles/about-pull-requests/)), it is required to merge your updates into this repository if you want to share your changes :)

Hi @danbouckley, sure this make sense! I think you can try to use the model controller properties like `$pristine`/`$dirty` or `$valid`/`$invalid` to achieve that goal. ``` css select.ng-valid + label...

Well, to have such a behavior, we need to implement two model properties inside the directive, `$viewValue` and `$modelValue`. Since there's only one property in the directive's scope, called `$scope.value`,...

Hi @C00per. At the moment filtering works with the native angular `$filter` service over the entire object. It would be very nice if users could be define a custom filtering...

Ok, maybe custom filtering function could be one of the next features :)

Should the content of this file be included in the index.d.ts? How do you use/expect to use it in an application?

Yes, got your point. Anyway I was saying that we should include the content in the main index.d.ts file, including the namespace that tells us where the file is actually...

Hi @kamnab, could you please provide a full working sample for this?

Hi @jintu-varghese, can it be helpful to have an option that allows you to set all the items in one time? I mean something like this: ``` javascript var myOptions...

Hi @hyeonnykim, thank you for reporting this. It seems to be caused by jQuery's `attr()` method, it converts the string `"0200_111111"` into the integer `200`... and I don't know why....