root/taggingreloaded/templates/messageFormTaggingClassic.tpl @ 412

Revision 412, 0.7 kB (checked in by d0nut, 5 years ago)

fixed ticket #7.. return from submit doesn't send the formular.. also added autocompletion to classic style

Line 
1<div class="formElement">
2        <div class="formFieldLabel">
3                        <label for="subject">{lang}wcf.taggingreloaded.tags{/lang}</label>
4        </div>
5        <div class="formField">
6                <input type="text" class="inputText" name="inputTagging" id="inputTagging" value="{$tags}" tabindex="11" onkeypress="if(event.keyCode=='13')return false" onkeydown="if(event.keyCode=='13')return false"/>
7                <script type="text/javascript" src="{@RELATIVE_WCF_DIR}js/Suggestion.class.js"></script>
8                <script type="text/javascript">
9                        //<![CDATA[
10                        suggestion.setSource('index.php?page=PublicTaggingSuggest');
11                        suggestion.setSeparator(' ');
12                        suggestion.init('inputTagging');
13                        //]]>
14                </script>
15                {lang}wcf.taggingreloaded.add.description{/lang}
16        </div>
17</div>
Note: See TracBrowser for help on using the browser.