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?