Hi Soludukhin If you omit the `tiddler` attribute of the `<$edit>` widget it defaults to the current tiddler. You also need to use the `field` attribute rather than the `index` attribute (the latter is for referencing properties of data tiddlers). So you should be able to write:
<$list filter="[is[current]tagging[]tag[TAG1]!FIELD1[T]]"> <$view field="title" format="link"/> <$edit field="FIELD1" default="" type="text"/> <$edit field="FIELD2" default="" type="number"/> <$edit field="FIELD..." default="" type="date"/> </$list> Best wishes Jeremy On Tue, Sep 3, 2013 at 10:37 AM, Solodukhin Roman <[email protected]>wrote: > Hi! > > I have a list of tiddlers. > I wont add to this list a some editable fields. > This "editable fields" is a "fields of tiddler". > > I try this: > <$list filter="[is[current]tagging[]tag[TAG1]!FIELD1[T]]"> > <$view field="title" format="link"/> > <$edit tiddler="[current]" index="FIELD1" default="" type="text"/> > <$edit tiddler="[current]" index="FIELD2" default="" type="number"/> > <$edit tiddler="[current]" index="FIELD..." default="" type="date"/> > > </$list> > > TIDDLER_1 [FIELD1] [FIELD2] [FIELD...] > TIDDLER_2 [FIELD1] [FIELD2] [FIELD...] > TIDDLER_3 [FIELD1] [FIELD2] [FIELD...] > > how i can to do this? > > -- Jeremy Ruston mailto:[email protected] -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/groups/opt_out.

