Ashvini Vibhute

Results 12 comments of Ashvini Vibhute

@Mingus85 Can you please share your code?. especially, the `create` action of the controller. It is just to know what you are exactly trying to do. And the last part...

@Rubioli Can you please share your code? . Just want to know why [Limit-max-count-of-nested-fields](https://github.com/ryanb/nested_form/wiki/How-To:-Limit-max-count-of-nested-fields) is not working. Because it seems to be correct. Not actually tried. But still I would...

@Varunprakas I think we can do it by using `$scope.example12settings = {selectionLimit: 1}` conditionally. If you want to disable multiselect i.e you need to enable single item selection set this...

@amitchoudhary151417 If I am not wrong, you want an option for single element to behave as both multiselect and single select which will be decided by a directive like 'ng-show....

@realmadrid2727 I was also getting the same error. I fixed it by setting `index.max_result_window: 100000` in the elasticsearch configuration file i.e `elasticsearch.yml` . Basically we need to set it to...

Yes, I had binded image before calling `setZoom`.Still didnot work for me. Finally I got the solution by changing `initialZoom` in the croppie.js [line](https://github.com/Foliotek/Croppie/blob/master/croppie.js#L660) to average of `minZoom` and `maxZoom`.

@GaganTiwari There is one option present , If you want to set no zoom while assigning an image to cropper as default that is, set `enableZoom: false` while initializing croppie....

@thedustinsmith Above solution didnot work for me ,instead the `enableZoom : false` is working for me. Can you please explain me the use of `enableZoom` option. Actually I have referred...

@thedustinsmith sorry my mistake the documentation clearly mentioned that the `enableZoom` property is **If set to false - scrolling and pinching would not zoom**. `enableZoom: false` could not be the...

I mean, "No zoom" as in image at it's native size when someone uploads an image for cropping and should be able to zoom by himself. And I understood here...