Muestra datos cuando el foco está en otro control.
<xe:tooltip attributes>content</xe:tooltip>
| Propiedad | Descripción |
|---|---|
| id | El valor predeterminado es tooltip1, tooltip2, etc. |
| for | Especifica el control al que se aplica la ayuda contextual. |
| label | Especifica el contenido de la ayuda contextual. |
| dynamicContent | Establezca este valor en true. |
| Categoría | Propiedades |
|---|---|
| elementos básicos | binding, dynamicContent, for, id, label, loaded, rendered, rendererType, showDelay |
| dojo | dojoAttributes, dojoType |
| sucesos | afterContentLoad, beforeContentLoad |
| Formato | position |
| estilo | disableTheme, themeId |
Consulte Ayuda contextual dinámica para obtener más información.
<xp:this.data>
<xp:dominoView var="view1" viewName="subject"></xp:dominoView>
</xp:this.data>
<xp:repeat id="repeat1" rows="30" value="#{view1}" var="row">
<xp:text escape="true" id="computedField1"
value="#{row.subject}">
</xp:text> <xp:br></xp:br>
<xe:tooltip id="tooltip1" for="computedField1"
dynamicContent="true">
<xe:this.label>
<![CDATA[#{javascript:var doc:NotesDocument = row.getDocument();
return "Last modified on " + doc.getLastModified().getLocalTime()}]]>
</xe:this.label>
</xe:tooltip>
</xp:repeat>
<xp:this.data>
<xp:dominoView var="view1" viewName="subject"></xp:dominoView>
</xp:this.data>
<xp:repeat id="repeat1" rows="30" value="#{view1}" var="row">
<xp:text escape="true" id="computedField1" value="#{row.subject}"></xp:text>
<xp:br></xp:br>
<xe:tooltip id="tooltip1" for="computedField1" dynamicContent="true">
<xp:panel>
<xp:table>
<xp:tr>
<xp:td>Category</xp:td>
<xp:td><xp:text escape="true" id="computedField2">
<xp:this.value>
<![CDATA[#{javascript:var doc:NotesDocument = row.getDocument();
return doc.getItemValueString("category")}]]>
</xp:this.value></xp:text>
</xp:td>
</xp:tr>
<xp:tr>
<xp:td>Last modified</xp:td>
<xp:td><xp:text escape="true" id="computedField3">
<xp:this.value>
<![CDATA[#{javascript:var doc:NotesDocument = row.getDocument();
return doc.getLastModified().getLocalTime()}]]>
</xp:this.value></xp:text>
</xp:td>
</xp:tr>
</xp:table>
</xp:panel>
</xe:tooltip>
</xp:repeat>