在我的项目中我使用angularjs选择框。我需要为选择框提供自定义样式滚动条。使用jquery scrollpane我找到了我想要的东西。但是在angularjs selctbox中实现它不起作用
这是链接click here在这个带滚动条的选择框中。我想在angularjs中实现它
请给我一个关于此的想法
这是我的代码
<select class="custom" ng-options="sb.ID as sb.NAME for sb in Students|orderBy:'NAME'" ng-model="selectedStudents" ng-change="onChange(selectedStudents)">
<option value="">Select</option>
</select>
脚本
$(function()
{
$(".custom").is(function()
{
var sb = new SelectBox({
selectbox: $(this),
height: 150,
width: 300
});
});
});
谢谢