use of org.olat.core.gui.components.form.flexible.impl.elements.table.FlexiTableElementImpl in project openolat by klemens.
the class SelectSectionsCellRenderer method render.
@Override
public void render(Renderer renderer, StringOutput target, Object cellValue, int row, FlexiTableComponent source, URLBuilder ubu, Translator trans) {
if (cellValue instanceof SharedItemRow) {
SharedItemRow itemRow = (SharedItemRow) cellValue;
List<AssessedBinderSection> sections = itemRow.getSections();
if (sections != null && sections.size() > 0) {
FlexiTableElementImpl ftE = source.getFlexiTableElement();
String id = source.getFormDispatchId();
Form rootForm = ftE.getRootForm();
boolean expand = itemRow.isExpandSections();
for (int i = 0; i < sections.size(); i++) {
if (i > 0) {
if (expand)
target.append("<br />");
else
target.append(" | ");
}
NameValuePair pair1 = new NameValuePair("select-section", Integer.toString(row));
NameValuePair pair2 = new NameValuePair("section", Integer.toString(i));
String jsCode = FormJSHelper.getXHRFnCallFor(rootForm, id, 1, true, true, pair1, pair2);
target.append("<a href=\"javascript:").append(jsCode).append(";\"").append(">");
if (expand) {
target.append(StringHelper.escapeHtml(sections.get(i).getSectionTitle()));
} else {
target.append(i + 1);
}
target.append("</a>");
}
NameValuePair pair = new NameValuePair("expand-section", Integer.toString(row));
String jsCode = FormJSHelper.getXHRFnCallFor(rootForm, id, 1, true, true, pair);
target.append(" <a href=\"javascript:").append(jsCode).append(";\"").append(">");
if (itemRow.isExpandSections()) {
target.append("<i class='o_icon o_icon-sm o_icon_expand'> </i>");
} else {
target.append("<i class='o_icon o_icon-sm o_icon_compress'> </i>");
}
target.append("</a>");
}
}
}
use of org.olat.core.gui.components.form.flexible.impl.elements.table.FlexiTableElementImpl in project openolat by klemens.
the class PageTitleCellRenderer method render.
@Override
public void render(Renderer renderer, StringOutput target, Object cellValue, int row, FlexiTableComponent source, URLBuilder ubu, Translator translator) {
FlexiTableElementImpl tEl = source.getFlexiTableElement();
Object rowValue = tEl.getTableDataModel().getObject(row);
if (rowValue instanceof SharedPageRow) {
SharedPageRow page = (SharedPageRow) rowValue;
target.append(StringHelper.escapeHtml(page.getPageTitle()));
}
}
Aggregations