> As for now, my question would be - how the fields are represented in
> the object model?

There are two types of Tiddler attributes, standard and custom fields:
http://trac.tiddlywiki.org/browser/Trunk/core/js/TiddlerFields.js?rev=11290#L46
http://tiddlywiki.org/wiki/Dev:Custom_Fields

Custom fields are represented as members of the "fields" object, e.g.:
{
    title: "Foo",
    modifier: "FND",
    ...
    tags: ["bar", "baz"],
    text: "lorem ipsum dolor sit amet",
    fields: {
        alpha: "hello",
        bravo: "world"
    }
}

You might want to inspect a Tiddler instance using Firebug:
    var tiddler = store.getTiddler("MyTiddler");
    console.dir(tiddler);

Please note that such technical details are better discussed on the dev
group, as you're more likely to get competent help there:
    http://groups.google.com/group/TiddlyWikiDev/


-- F.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.

Reply via email to