FAQ:
How can I create a simple TWiki Form based application?Answer:
- Create a TWiki Form and define fields (see TWikiForms for details)
- Add the form in the list of Web Forms. Set the variable WEBFORMS in WebPreferences
- Create a Template Topic
- In edit mode add the TWiki Form you defined to the Template Topic using the "Add Form" button
- Create a HTML Form with necessary fields
- Define
SEARCH
function for listing items (see VarSEARCH for details)
<form action="%SCRIPTURLPATH{edit}%/%WEB%/"> New FAQ topic: (Use a name in TWiki.WikiNotation) <br /> <input type="text" name="topic" size="32" class="twikiInputField" /> <input type="submit" value="Create Topic" class="twikiSubmit" /> <input type="hidden" name="onlywikiname" value="on" /> <input type="hidden" name="templatetopic" value="TWikiFaqTemplate" /> <input type="hidden" name="topicparent" value="%TOPIC%" /> <br /> </form>
And the
SEARCH
function:
%SEARCH{ "Back to\:__ TWikiFAQ" casesensitive="on" type="regex" nosearch="on" nototal="on"}%Back to: TWikiFAQ Related Topics: UserDocumentationCategory -- Contributors: TWiki:Main.MiyokoTakushima
