org.primefaces.component.datatable.feature.DraggableColumnsFeature Maven / Gradle / Ivy
/*
* Copyright 2009-2014 PrimeTek.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.primefaces.component.datatable.feature;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.faces.component.UIComponent;
import javax.faces.component.UINamingContainer;
import javax.faces.context.FacesContext;
import org.primefaces.component.api.DynamicColumn;
import org.primefaces.component.column.Column;
import org.primefaces.component.columns.Columns;
import org.primefaces.component.datatable.DataTable;
import org.primefaces.component.datatable.DataTableRenderer;
public class DraggableColumnsFeature implements DataTableFeature {
public void decode(FacesContext context, DataTable table) {
Map params = context.getExternalContext().getRequestParameterMap();
String[] order = params.get(table.getClientId(context) + "_columnOrder").split(",");
List orderedColumns = new ArrayList();
String separator = String.valueOf(UINamingContainer.getSeparatorChar(context));
for(String columnId : order) {
for(UIComponent child : table.getChildren()) {
if(child instanceof Column && child.getClientId(context).equals(columnId)) {
orderedColumns.add(child);
break;
}
else if(child instanceof Columns) {
String columnsClientId = child.getClientId(context);
if(columnId.startsWith(columnsClientId)) {
String[] ids = columnId.split(separator);
int index = Integer.parseInt(ids[ids.length - 1]);
orderedColumns.add(new DynamicColumn(index, (Columns) child, (columnsClientId + separator + index)));
break;
}
}
}
}
table.setColumns(orderedColumns);
}
public void encode(FacesContext context, DataTableRenderer renderer, DataTable table) throws IOException {
throw new RuntimeException("DraggableColumns Feature should not encode.");
}
public boolean shouldDecode(FacesContext context, DataTable table) {
return table.isDraggableColumns();
}
public boolean shouldEncode(FacesContext context, DataTable table) {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy