Hi,
I am new to TiddlyWiki - and have searched the last couple of days on the basic usage - with not much luck on actually “how” to use the scrollable - seriously - no actual examples.
Issue:
- I have a table - and display {{ToDo’s}} within a cell - but do not know how to use “scrollable”
- I need to limit the width, height and font-size for my {{ToDo’s}} in the cell.
This is the best I found:
So - armed with that - the “best” I can think of is the following:
- Create a Tiddler: Top_1 ← with my instructions
<$scrollable> Widget Content Outer Widget Content Inner </Inner div> </Outer div> </$scrollable> </scrollable frame>
Tags: none
Type: default
field: none
- Create a Tiddler: Top_1b ← The demo CSS
.tc-scrollable-demo {
border: 1px solid <>;
background-color: <>;
padding: 1em;
height: 400px;
position: relative;
}
Tags: none
Type: txt/css
field: “class:” Value:“tc-scrollable-demo”
- Create a Tiddler: Top_1c ← The demo Scrollable code example
<$scrollable class=‘tc-scrollable-demo’>
<$list filter=’[!is[system]]’>
<$view field=‘title’/>: <$list filter=’[all[current]links[]sort[title]]’ storyview=‘pop’>
<$link><$view field=‘title’/></$link>
</$list>
</$list>
</$scrollable>
Tags: none
Type: none
Field: “class” Value: “.tc-scrollable-demo”
- Create a Tiddler: Top_1d ← What I really need
!scrollable frame
- Outside Frame
,… and of course - the Frames does not limit the height.
Help?
Thanks