diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-12-03 09:46:31 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-12-03 09:46:31 +0000 |
commit | 066fb4e8e3e911b8504365cf62ce1af15e391628 (patch) | |
tree | ca72da1921daeb8a49b94b2189e2facd7d8dd568 /templates/editbookmark.tpl.php | |
parent | 280d90cfefb52f911ba272ca6085270f1865a8a4 (diff) | |
download | semanticscuttle-066fb4e8e3e911b8504365cf62ce1af15e391628.tar.gz semanticscuttle-066fb4e8e3e911b8504365cf62ce1af15e391628.tar.bz2 |
Bug fix: correct DOJO completion in tags edition
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@186 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/editbookmark.tpl.php')
-rw-r--r-- | templates/editbookmark.tpl.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/editbookmark.tpl.php b/templates/editbookmark.tpl.php index 4f97dac..9592384 100644 --- a/templates/editbookmark.tpl.php +++ b/templates/editbookmark.tpl.php @@ -15,8 +15,12 @@ switch ($row['bStatus']) { $accessPrivate = ' selected="selected"'; break; } + +$this->includeTemplate("dojo.inc"); ?> + + <script type="text/javascript"> //window.onload = function() { // document.getElementById("address").focus(); @@ -44,7 +48,7 @@ switch ($row['bStatus']) { <th align="left"><?php echo T_('Tags'); ?></th> <td class="scuttletheme"> <span dojoType="dojo.data.ItemFileReadStore" jsId="memberTagStore" url="<?php echo ROOT?>ajax/gettags.php"></span> - <input type="text" dojoType="dojox.form.MultiComboBox" id="tags" name="tags" size="75" value="<?php echo filter(implode(', ', $row['tags']), 'xml'); ?>" store="memberTagStore" delimiter="," searchAttr="tag" hasDownArrow="false"/></td> + <input type="text" dojoType="js.MultiComboBox" id="tags2" name="tags" size="75" value="<?php echo filter(implode(', ', $row['tags']), 'xml'); ?>" store="memberTagStore" delimiter="," searchAttr="tag" hasDownArrow="false"/></td> <td>← <?php echo T_('Comma-separated'); ?></td> </tr> <tr> @@ -99,7 +103,7 @@ switch ($row['bStatus']) { <?php // Dynamic tag selection -$this->includeTemplate('dynamictags.inc'); +//$this->includeTemplate('dynamictags.inc'); // Bookmarklets and import links if (empty($_REQUEST['popup']) && (!isset($showdelete) || !$showdelete)) { |