0

I'm trying kendo ui for ng2. I've used the numericinput textbox but I can't find a way on how to style it, in particular I'm need to change the with 100%, how is this possible?

           <kendo-numerictextbox   [value]="kendonumericvalue"
                                   formControlName="kendoNumericTextControl" 
                                   [min]="-3"
                                   [max]="10"
                                   [autoCorrect]="true"
                                   style="width: 100%"> //<--not working
           </kendo-numerictextbox>
Carlo Luther
  • 2,402
  • 7
  • 46
  • 75

1 Answers1

1

Seems to be working in this plnkr - http://plnkr.co/edit/TM86TiyFkDQXxXRNIVEv?p=preview

 <kendo-numerictextbox [value]="value"
     [min]="-3"
     [max]="10"
     [autoCorrect]="true"
     style="width: 100%"> //<--applied to the host element
 </kendo-numerictextbox>
rusev
  • 1,880
  • 2
  • 17
  • 14