Re: [tw] Re: [TW5] Pb with select widget (Chris Hunt)

2014-04-26 Thread FrD
Hi Jeremy, I'd like to have some select widgets on the same line with text. And then I want to use the variables that are set by the selects to create a tiddler with Stephan's newtiddler widget. I think I'll make some trials with listselect widget from Stepnan. Thanks FrD On Saturday, April

Re: [tw] Re: [TW5] Pb with select widget (Chris Hunt)

2014-04-24 Thread Jeremy Ruston
Hi FrD It sounds like you're being hit by the 5.0.8 change to the way that the content of widgets is parsed: http://tiddlywiki.com/static/Notes%2520for%2520upgrading%2520to%25205.0.8-beta.html You probably need to add an extra linebreak after your opening $select tag, so that there is a double

Re: [tw] Re: [TW5] Pb with select widget (Chris Hunt)

2014-04-24 Thread FrD
Hi Jeremy, Thanks for jumping in. Alas your suggestion does not work. The code is below : $select list=A B C name=selection1 The current selection is: selection1 $select tiddler=testSelectAux name=selection2 The current selection is: selection2 Les sélections sont : selection1br/

Re: [tw] Re: [TW5] Pb with select widget (Chris Hunt)

2014-04-24 Thread Jeremy Ruston
Hi FrD With the code you posted the opening $select tag is not followed by two linebreaks, and so the body of the widget will be parsed in inline mode. If you want to have it parsed in block mode (to avoid those br tags, perhaps), then you'll need to add two linebreaks after both the opening

Re: [tw] Re: [TW5] Pb with select widget (Chris Hunt)

2014-04-24 Thread FrD
Hi Jeremy, It works as you say. But it raises other problems as nothing can follow immediatly after the opening $select (except 2 newlines). Thanks FrD Le jeudi 24 avril 2014 18:45:27 UTC+2, Jeremy Ruston a écrit : Hi FrD With the code you posted the opening $select tag is not followed

[tw] Re: [TW5] Pb with select widget (Chris Hunt)

2014-04-23 Thread FrD
Hi, It seems that inside the select widget (ie between $select ... and /$select) there is no way to have block mode ; everything is processed inline. Outside the widget (for instance after) everything is fine again. Has something changed between say 5.0.8(or earlier when this widget worked)