Search in sources :

Example 36 with HtmlBuilder

use of org.jmesa.view.html.HtmlBuilder in project OpenClinica by OpenClinica.

the class StudySubjectStatusView method render.

public Object render() {
    HtmlSnippets snippets = getHtmlSnippets();
    HtmlBuilder html = new HtmlBuilder();
    setCustomCellEditors();
    html.append(snippets.themeStart());
    html.append(snippets.tableStart());
    html.append(snippets.theadStart());
    html.append(customHeader());
    html.append(snippets.filter());
    html.append(snippets.header());
    html.append(snippets.theadEnd());
    html.append(snippets.tbodyStart());
    html.append(snippets.body());
    html.append(snippets.tbodyEnd());
    html.append(snippets.footer());
    html.append(snippets.tableEnd());
    html.append(snippets.themeEnd());
    html.append(snippets.initJavascriptLimit());
    return html.toString();
}
Also used : HtmlSnippets(org.jmesa.view.html.HtmlSnippets) HtmlBuilder(org.jmesa.view.html.HtmlBuilder)

Example 37 with HtmlBuilder

use of org.jmesa.view.html.HtmlBuilder in project OpenClinica by OpenClinica.

the class EventStatusView method customHeader.

private String customHeader() {
    HtmlBuilder html = new HtmlBuilder();
    html.thead(0).tr(0).styleClass("header").close();
    html.td(0).colspan("4").style("border-bottom: 1px solid white;background-color:white;color:grey;").align("center").close().append(resword.getString("study_progress")).tdEnd();
    html.theadEnd(0);
    return html.toString();
}
Also used : HtmlBuilder(org.jmesa.view.html.HtmlBuilder)

Example 38 with HtmlBuilder

use of org.jmesa.view.html.HtmlBuilder in project OpenClinica by OpenClinica.

the class ListNotesTableFactory method downloadNotesLinkBuilder.

private String downloadNotesLinkBuilder(StudySubjectBean studySubject) {
    HtmlBuilder actionLink = new HtmlBuilder();
    if (this.isStudyHasDiscNotes()) {
        if (this.getResolutionStatus() >= 1 && this.getResolutionStatus() <= 5) {
            actionLink.a().href("javascript:openDocWindow('ChooseDownloadFormat?subjectId=" + studySubject.getId() + "&discNoteType=" + discNoteType + "&resolutionStatus=" + resolutionStatus + "')");
            actionLink.img().name("bt_View1").src("images/bt_Download.gif").border("0").alt(resword.getString("download_discrepancy_notes")).title(resword.getString("download_discrepancy_notes")).append("hspace=\"4\" width=\"24 \" height=\"15\"").end().aEnd();
            actionLink.append("&nbsp;&nbsp;&nbsp;");
        } else {
            actionLink.a().href("javascript:openDocWindow('ChooseDownloadFormat?subjectId=" + studySubject.getId() + "&discNoteType=" + discNoteType + "&module=" + module + "')");
            actionLink.img().name("bt_View1").src("images/bt_Download.gif").border("0").alt(resword.getString("download_discrepancy_notes")).title(resword.getString("download_discrepancy_notes")).append("hspace=\"2\" width=\"24 \" height=\"15\"").end().aEnd();
            actionLink.append("&nbsp;&nbsp;&nbsp;");
        }
    }
    return actionLink.toString();
}
Also used : HtmlBuilder(org.jmesa.view.html.HtmlBuilder)

Example 39 with HtmlBuilder

use of org.jmesa.view.html.HtmlBuilder in project OpenClinica by OpenClinica.

the class ListStudySubjectTableFactory method signStudySubjectLinkBuilder.

private String signStudySubjectLinkBuilder(StudySubjectBean studySubject) {
    HtmlBuilder actionLink = new HtmlBuilder();
    actionLink.a().href("SignStudySubject?id=" + studySubject.getId());
    actionLink.append("onMouseDown=\"javascript:setImage('icon_signed','images/icon_Signed.gif');\"");
    actionLink.append("onMouseUp=\"javascript:setImage('icon_signed','images/icon_Signed.gif');\"").close();
    actionLink.img().name("bt_Sign1").src("images/icon_Signed.gif").border("0").alt(resword.getString("sign")).title(resword.getString("sign")).append("hspace=\"2\"").end().aEnd();
    actionLink.append("&nbsp;&nbsp;&nbsp;");
    return actionLink.toString();
}
Also used : HtmlBuilder(org.jmesa.view.html.HtmlBuilder)

Example 40 with HtmlBuilder

use of org.jmesa.view.html.HtmlBuilder in project OpenClinica by OpenClinica.

the class ListStudySubjectTableFactory method restoreStudySubjectLinkBuilder.

private String restoreStudySubjectLinkBuilder(StudySubjectBean studySubject) {
    HtmlBuilder actionLink = new HtmlBuilder();
    actionLink.a().href("RestoreStudySubject?action=confirm&id=" + studySubject.getId() + "&subjectId=" + studySubject.getSubjectId() + "&studyId=" + studySubject.getStudyId());
    actionLink.append("onMouseDown=\"javascript:setImage('bt_Restor3','images/bt_Restore_d.gif');\"");
    actionLink.append("onMouseUp=\"javascript:setImage('bt_Restor3','images/bt_Restore_d.gif');\"").close();
    actionLink.img().name("bt_Restore1").src("images/bt_Restore.gif").border("0").alt(resword.getString("restore")).title(resword.getString("restore")).append("hspace=\"2\"").end().aEnd();
    return actionLink.toString();
}
Also used : HtmlBuilder(org.jmesa.view.html.HtmlBuilder)

Aggregations

HtmlBuilder (org.jmesa.view.html.HtmlBuilder)53 HtmlSnippets (org.jmesa.view.html.HtmlSnippets)6 SyndEntryImpl (com.sun.syndication.feed.synd.SyndEntryImpl)1 SimpleDateFormat (java.text.SimpleDateFormat)1 ArrayList (java.util.ArrayList)1 List (java.util.List)1 StudyBean (org.akaza.openclinica.bean.managestudy.StudyBean)1 RuleActionBean (org.akaza.openclinica.domain.rule.action.RuleActionBean)1 ParticipantPortalRegistrar (org.akaza.openclinica.service.pmanage.ParticipantPortalRegistrar)1 BasicCellEditor (org.jmesa.view.editor.BasicCellEditor)1 CellEditor (org.jmesa.view.editor.CellEditor)1 HtmlColumn (org.jmesa.view.html.component.HtmlColumn)1 HtmlRow (org.jmesa.view.html.component.HtmlRow)1 HtmlTable (org.jmesa.view.html.component.HtmlTable)1