--
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.
I am insert in tiddler text <$view field="title"/>, this is OK.
But my idea do not work.
{{{ [tag[TagName1]]+[tag[TagName2]] }}} - OK
{{{ [tag[<$view field="title"/>]]+[tag[TagName2]] }}} - do not work
среда, 14 августа 2013 г., 18:51:59 UTC+3 пользователь Jeremy Ruston написал:Hi Solodukhin,Sorry for the late reply.In TW5, you can get the title of the current tiddler with:<$view field="title"/>Best wishesJeremyOn Mon, Aug 12, 2013 at 8:58 AM, Solodukhin Roman <xrob...@gmail.com> wrote:
Hi everyone!
I am try to use TW5.
How i can get title of current tiddler?
I try {{tiddler.title}}, but don't work.
--To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+...@googlegroups.com.
You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.
--
Jeremy Ruston
mailto:jeremy...@gmail.com
Ah, it looks like you are trying to generate a list of all tiddlers that are tagged with the current tiddler and also by "TagName2". Is that right?
Sorry, for my bad english, but i continue my crazy experiments.
I want to get tiddlers thith field P_AGREED = 'TRUE'
{{{ [p_agreed[TRUE]] }}} - works
not works
{{{ [tag{!!title}tag[TAGNAME2][p_agreed[FALSE]]] +[sort[title]] }}}
{{{ [tag{!!title}tag[TAGNAME2]{[p_agreed[FALSE]]}] +[sort[title]] }}}
1. I have some tiddlers returned by expression "{{{ [p_agreed[TRUE]] }}} ". How i can count this tiddlers?
I want "COUNT {{{ [p_agreed[TRUE]] }}}"
2. How i can create new tiddler with some user-fields, depends from tags?Example.
TAG1
t1field1
t1field2
TAG2
t2field1
t2field2
i create NewTiddler1,
assign TAG1 and in auto mode add fields(t1field1, t1field2)
assign TAG2 and in auto mode add fields(t2field1, t2field2)
1. I have some tiddlers returned by expression "{{{ [p_agreed[TRUE]] }}} ". How i can count this tiddlers?
I want "COUNT {{{ [p_agreed[TRUE]] }}}"This is definitely needed, and will be added shortly.
2. How i can create new tiddler with some user-fields, depends from tags?Example.
TAG1
t1field1
t1field2
TAG2
t2field1
t2field2
i create NewTiddler1,
assign TAG1 and in auto mode add fields(t1field1, t1field2)
assign TAG2 and in auto mode add fields(t2field1, t2field2)There's currently no mechanism within TW5 that could support a feature like this. Can you explain a little more about the use case you are trying to accomplish?Best wishesJeremy
Can I do this for example?
<$list filter=".....">
.....
<$edit tiddler="<value_of_current_tiddler_field>_<field_from_tiddler_from_list>_<date>"
index ="<value_of_current_tiddler_field>_<field_from_tiddler_from_list>_<date>" default="" type="input"/>
</$list>