Allgemeine Aktionen:
Anmelden
Registrieren
Start
▼
:
Wiki Verzeichnis
»
Bereich:
AppWithinMinutes
»
Seite:
Title
default
Aktionen:
Exportieren
▼
:
Als PDF exportieren
Als RTF exportieren
Als HTML exportieren
Weitere Aktionen
▼
:
Druckvorschau
Zeige den Quellcode
Willkommen bei bytebang
»
Anwendung erstellen in wenigen Minuten
»
FormField Class
»
Titel
Wiki-Quellcode von
Titel
Zuletzt geƤndert von
Administrator
am 2014/06/29 19:29
Inhalt
Zeilennummern verstecken
1: {{velocity}} 2: #if ($type == 'edit') 3: #set ($className = $object.getxWikiClass().name) 4: #if ($doc.fullName == $className) 5: ## We are editing the class so the title must be read from / written to the template document. 6: #set ($name = 'templateTitle') 7: #set ($value = $xwiki.getDocument("$stringtool.removeEnd($className, 'Class')Template").title) 8: #else 9: ## We are editing an application entry so the title must be read from / written to the current document. 10: #set ($name = 'title') 11: #set ($value = $tdoc.title) 12: #end 13: {{html clean="false"}} 14: <input type="text" name="$name" value="$!escapetool.xml($value)" 15: #if ($xwiki.getXWikiPreference('xwiki.title.mandatory') == 1)class="required"#end/> 16: {{/html}} 17: #elseif ("$!type" != '') 18: ## Render the title of the current document. 19: {{html}}$tdoc.getRenderedTitle('xhtml/1.0'){{/html}} 20: #else 21: The display mode is not specified! 22: #end 23: {{/velocity}}