Jelly:<select/>:is it possible to add search-box?

17 views
Skip to first unread message

Dzmitry Kashlach

unread,
Aug 24, 2016, 8:19:13 AM8/24/16
to Jenkins Developers
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?

Reply all
Reply to author
Forward
0 new messages