7
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2 <html xmlns="http://www.w3.org/1999/xhtml"
|
|
3 xmlns:h="http://java.sun.com/jsf/html"
|
|
4 xmlns:f="http://java.sun.com/jsf/core"
|
|
5 xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
6 xmlns:a4j="http://richfaces.org/a4j"
|
|
7 xmlns:rich="http://richfaces.org/rich"
|
|
8 xmlns:ismi="http://java.sun.com/jsf/composite/components/ismi">
|
|
9 <body>
|
|
10 <ui:composition>
|
|
11
|
|
12 <h:panelGrid id="misattArea">
|
|
13
|
|
14
|
|
15
|
|
16 <h:panelGroup rendered="#{CurrentText.misattTable.misatt != null}">
|
|
17 <div style="z-index: 100;" class="rf-pp-shade">
|
|
18 <button class="rf-pp-btn" tabindex="-1" accesskey="" />
|
|
19 </div>
|
|
20
|
|
21 <h:panelGrid columns="1" class="rf-pp-cntr"
|
|
22 style="height: 350px; left: 470px; position: fixed; top: 219px; width: 500px; z-index: 100;">
|
|
23
|
|
24 <div class="rf-pp-shdw"
|
|
25 style="opacity: 0.1; width: 500px; height: 350px; left: 5px; top: 5px; bottom: -5px;">
|
|
26 </div>
|
|
27 <div class="rf-pp-hdr " style="cursor: default;">
|
|
28 <div class="rf-pp-hdr-cnt">EndNote Reference</div>
|
|
29 </div>
|
|
30
|
|
31 <h:panelGrid columns="1" class="rf-pp-cnt-scrlr"
|
|
32 style="width: 500px; height: 329px;">
|
|
33 <h:panelGrid columns="1" class="rf-pp-cnt">
|
|
34
|
|
35 <h:panelGrid columns="1">
|
|
36 <h:panelGrid columns="2">
|
|
37
|
|
38 <h:outputLabel value="EndNote Id" />
|
|
39 <h:inputText
|
|
40 value="#{CurrentText.misattTable.misatt.ref.endNoteId}" />
|
|
41
|
|
42 <h:outputLabel value="ESciDoc Id" />
|
|
43 <h:inputText
|
|
44 value="#{CurrentText.misattTable.misatt.ref.escidocId}" />
|
|
45
|
|
46 <h:outputLabel value="EndNote Content" />
|
|
47 <h:inputTextarea
|
|
48 value="#{CurrentText.misattTable.misatt.ref.endNoteContent}"
|
|
49 rows="10" cols="200" />
|
|
50
|
|
51 <h:outputLabel value="Additional Information" />
|
|
52 <h:inputTextarea
|
|
53 value="#{CurrentText.misattTable.misatt.ref.addInformation}"
|
|
54 rows="3" cols="200" />
|
|
55
|
|
56 </h:panelGrid>
|
|
57 <a4j:commandButton value="OK"
|
|
58 actionListener="#{CurrentText.misattTable.listenerSaveRef}"
|
|
59 render="misattArea"/>
|
|
60 </h:panelGrid>
|
|
61
|
|
62 </h:panelGrid>
|
|
63 </h:panelGrid>
|
|
64 </h:panelGrid>
|
|
65
|
|
66 </h:panelGroup>
|
|
67
|
|
68
|
|
69
|
|
70
|
|
71 <h:panelGrid border="0" columns="1">
|
|
72 <h:panelGrid columns="1"
|
|
73 rendered="#{!empty CurrentText.misattTable.list}">
|
|
74
|
|
75 <rich:dataTable value="#{CurrentText.misattTable.list}" var="item">
|
|
76
|
|
77 <rich:column>
|
|
78 <f:facet name="header">
|
|
79 <h:outputText value="Author" />
|
|
80 </f:facet>
|
|
81 <h:outputText
|
|
82 value="[#{item.obj.person.id}] #{item.obj.person.ownValue}" />
|
|
83 </rich:column>
|
|
84
|
|
85 <rich:column>
|
|
86 <f:facet name="header">
|
|
87 <h:outputText value="Ref EndNote" />
|
|
88 </f:facet>
|
|
89 <h:outputText value="#{item.obj.ref.endNoteId}" />
|
|
90 </rich:column>
|
|
91
|
|
92 <rich:column>
|
|
93 <f:facet name="header">
|
|
94 <h:outputText value="Ref Pubman" />
|
|
95 </f:facet>
|
|
96 <h:outputText value="#{item.obj.ref.escidocId}" />
|
|
97 </rich:column>
|
|
98
|
|
99 <rich:column>
|
|
100 <f:facet name="header">
|
|
101 <h:outputText value="Note" />
|
|
102 </f:facet>
|
|
103 <h:outputText value="#{item.obj.ref.addInformation}" />
|
|
104 </rich:column>
|
|
105
|
|
106 <rich:column>
|
|
107 <f:facet name="header">
|
|
108 <h:outputText value="Edit" />
|
|
109 </f:facet>
|
|
110 <a4j:commandLink
|
|
111 actionListener="#{CurrentText.misattTable.listenerEditRef}">
|
|
112 <h:graphicImage url="#{ApplicationBean1.editImage}" />
|
|
113 <a4j:ajax event="click" render="misattArea" />
|
|
114 </a4j:commandLink>
|
|
115 </rich:column>
|
|
116 <rich:column>
|
|
117 <h:selectBooleanCheckbox value="#{item.selected}" />
|
|
118 </rich:column>
|
|
119 </rich:dataTable>
|
|
120
|
|
121
|
|
122 <a4j:commandButton value="Remove"
|
|
123 actionListener="#{CurrentText.misattTable.listenerRemove}"
|
|
124 onclick="#{ApplicationBean1.JSConfirmationDelete}"
|
|
125 render="misattArea"/>
|
|
126 </h:panelGrid>
|
|
127
|
|
128 <h:panelGrid columns="2">
|
|
129 <ismi:autocomplete lo="#{CurrentText.misattTable.lo}" />
|
|
130 <a4j:commandButton value="Add"
|
|
131 actionListener="#{CurrentText.misattTable.listenerCreate}"
|
|
132 render="misattArea"/>
|
|
133 </h:panelGrid>
|
|
134 </h:panelGrid>
|
|
135
|
|
136 </h:panelGrid>
|
|
137
|
|
138 </ui:composition>
|
|
139 </body>
|
|
140 </html>
|