diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-11 09:50:06 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-11 09:50:06 +0000 |
commit | 2ea21d96c108d0d21aa38712ec884991a9600f78 (patch) | |
tree | 70a30ce969a80b6478ddbd21e69b43c079f9e478 /templates/editbookmark.tpl.php | |
parent | d735cfd8e6c19408567e06f7b63c6cb5e0b07bfe (diff) | |
download | semanticscuttle-2ea21d96c108d0d21aa38712ec884991a9600f78.tar.gz semanticscuttle-2ea21d96c108d0d21aa38712ec884991a9600f78.tar.bz2 |
Interface fix: search characters in all part of tags in AJAX display
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@269 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/editbookmark.tpl.php')
-rw-r--r-- | templates/editbookmark.tpl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/editbookmark.tpl.php b/templates/editbookmark.tpl.php index d6f2115..3143958 100644 --- a/templates/editbookmark.tpl.php +++ b/templates/editbookmark.tpl.php @@ -69,7 +69,7 @@ $this->includeTemplate("dojo.inc"); <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="js.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="tags" name="tags" size="75" value="<?php echo filter(implode(', ', $row['tags']), 'xml'); ?>" store="memberTagStore" delimiter="," searchAttr="tag" hasDownArrow="false" queryExpr="*${0}*" autoComplete="false" highlightMatch="all"/></td> <td>← <?php echo T_('Comma-separated'); ?></td> </tr> <tr> |