私はページネーションを使用しているUIグリッドを持っています。 ページングサイズ:[25、50、75、100] UIグリッドのドロップダウンリストで100を選択すると、100は完全に表示されません。 CSSを使用して、表示されたドロップダウンリストの幅を変更する方法を教えてください。 感謝:) これは、現在、私のグリッドのオプションです:角度uiグリッドのドロップダウンリストの幅を設定します。
`$scope.gridOptions = {
enableFiltering: true,
enablePaging: true,
enableRowSelection: true,
multiSelect: false,
paginationPageSizes: [25, 50, 100],
paginationPageSize: 10
};`
Screenshot of my ui-grid dropdownlist
設定CSSプロパティのように:.ui-グリッド - pager-row-count-picker select {width:100px!important; } –