Hello, I have plugin with <select/>, which can contain more that 100 elements. Is it possible to upgrade it with a kind of search-box for faster selection?
I've tried something like <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.0-beta.2/angular.js"></script> <script> var app = angular.module('myApp', []); app.controller('myCtrl', function($scope) { $scope.var = "item"; }); </script> <f:entry> <div ng-app="myApp" ng-controller="myCtrl"> <f:select style="width:32em;" field="item"> <input type="text" ng-model="var"/>{{var}} </f:select> </div> </f:entry> but it doesn't work. Is there correct way to do it in jelly with/without other technics? -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-dev/1c66ec56-881c-4301-bc36-0df5e583e8d2%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
