本文整理了Java中com.vaadin.ui.Grid.isColumnReorderingAllowed()
方法的一些代码示例,展示了Grid.isColumnReorderingAllowed()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Grid.isColumnReorderingAllowed()
方法的具体详情如下:
包路径:com.vaadin.ui.Grid
类名称:Grid
方法名:isColumnReorderingAllowed
[英]Returns whether column reordering is allowed. Default value is false
.
[中]返回是否允许列重新排序。默认值为false
。
代码示例来源:origin: com.vaadin/vaadin-server
/**
* Sets whether or not column reordering is allowed. Default value is
* <code>false</code>.
*
* @param columnReorderingAllowed
* specifies whether column reordering is allowed
*/
public void setColumnReorderingAllowed(boolean columnReorderingAllowed) {
if (isColumnReorderingAllowed() != columnReorderingAllowed) {
getState().columnReorderingAllowed = columnReorderingAllowed;
}
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
@Override
public boolean isColumnReorderingAllowed() {
return component.isColumnReorderingAllowed();
}
代码示例来源:origin: com.haulmont.cuba/cuba-web
if (collapsed != null && component.isColumnReorderingAllowed()) {
column.setCollapsed(Boolean.parseBoolean(collapsed));
内容来源于网络,如有侵权,请联系作者删除!