如何在PrimeFaces中设置OrderList宽度

时间:2013-09-17 13:26:04

标签: css jsf primefaces

如何更改Primefaces中ListOrder的widht?

我试过宽度或款式,但它不想要我想要的。它通过滚动保持小:

a busy cat

你有什么想法吗?

我试过用css:

    .orderlist {
        width:1000px;
    }

和         p:orderList styleClass =“orderlist”......

这样做,我的页面较大,但包含数据的区域(以及可滚动列表仍然非常小。

3 个答案:

答案 0 :(得分:1)

以下CSS对我来说很好用:

.ui-orderlist-list {
    width:300px;
}

答案 1 :(得分:1)

.ui-orderlist .ui-orderlist-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow:auto;
    height:200px;
    width:100%;
}

.ui-orderlist .ui-orderlist-list li {
    margin: 1px;
    padding: 2px;
}

.ui-orderlist .ui-orderlist-button {
    display:block;
    margin-bottom:0.3em;
}

.ui-orderlist .ui-orderlist-button.ui-button-text-icon-primary {
    width:100%;
}

.ui-orderlist .ui-orderlist-item {
    cursor:pointer;
    border:0px none;
    font-weight: inherit;
}

.ui-orderlist .ui-orderlist-caption {
    text-align: center;
    padding:4px 10px 4px 10px;
    border-bottom:0px none;
}

.ui-orderlist table {
    width:100%;
    border-collapse:collapse;
}

答案 2 :(得分:1)

将此代码放入style.css

.ui-orderlist-list-container {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}