1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Add a "filter" tab to advanced search

This commit is contained in:
Jermolene 2014-02-07 10:07:57 +00:00
parent 68bcfe1c8c
commit 2758e586bd
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
title: $:/core/ui/AdvancedSearch/Filter
tags: $:/tags/AdvancedSearch
caption: Filter
<$linkcatcher to="$:/temp/advancedsearch">
Search via a [[filter expression|http://tiddlywiki.com/static/TiddlerFilters.html]]:
<div class="tw-search"><$edit-text tiddler="$:/temp/advancedsearch" type="search" tag="input"/><$reveal state="$:/temp/advancedsearch" type="nomatch" text=""> <$link to="" class="btn-invisible">{{$:/core/images/close-button}}</$link></$reveal></div>
</$linkcatcher>
<$reveal state="$:/temp/advancedsearch" type="nomatch" text="">
<div class="tw-search-results">
//<small><$count filter={{$:/temp/advancedsearch}}/> matches</small>//
<$list filter={{$:/temp/advancedsearch}} template="$:/core/ui/ListItemTemplate"/>
</div>
</$reveal>
<$reveal state="$:/temp/advancedsearch" type="match" text="">
</$reveal>

View File

@ -22,6 +22,7 @@ These are changes that might affect users upgrading from previous betas.
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/a01bbd4b9c7ca284141078340c8f568b1e0561a2]] [[automatic saving|AutoSave]] on editing a tiddler and a warning when attempting to close the window with unsaved changes
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/e6fa9b8a859867c147fb289859169b204dea003e]] number of tags to control panel ''Basics'' tab
* [[Added|https://github.com/Jermolene/TiddlyWiki5/commit/fa5938221552846c255eb50004996528a09534a9]] support for LazyLoading of images
* Added a ''Filter'' tab to [[advanced search|$:/AdvancedSearch]]
!! Bug Fixes