[twdev] TW5 The inmutable tiddler object

2014-04-05 Thread Danielo Rodríguez
Hello again! Since the tiddler object is going to be as solid as a rock I have this question: Is there any way to add properties different than fields? How can I add a property that I don't want to display as a field? I inspected the tiddler constructor and it took al the properties as fields.

Re: [twdev] TW5 The inmutable tiddler object

2014-04-05 Thread Stephan Hradek
You could add a comment to the tiddler's text. Would be a Property of the tiddler but not a field. !--MyOwnProperty:my propertie's value-- -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails

Re: [twdev] TW5 The inmutable tiddler object

2014-04-05 Thread Jeremy Ruston
Hi Danielo Please note that I don't want to add a property to an existing tiddler object but to create a new Tiddler with that property that I don't want to be a field. There is no support for adding additional properties beyond the fields of the tiddler. What are you trying to accomplish?

Re: [twdev] TW5 The inmutable tiddler object

2014-04-05 Thread Danielo Rodríguez
Hello Sthephan. Thanks for your answer, but your solution is as good/bad as creating a new field. Regards. El sábado, 5 de abril de 2014 19:18:51 UTC+2, Stephan Hradek escribió: You could add a comment to the tiddler's text. Would be a Property of the tiddler but not a field.

Re: [twdev] TW5 The inmutable tiddler object

2014-04-05 Thread Danielo Rodríguez
Hi Jeremy El sábado, 5 de abril de 2014 19:30:11 UTC+2, Jeremy Ruston escribió: What are you trying to accomplish? Best wishes Jeremy I want to add secret properties to a tiddler. I think I will go with the classic solution. Thank you. -- You received this message because you are

[twdev] TW5 creating a widget SyntaxError: Unexpected token {

2014-04-05 Thread Danielo Rodríguez
Hello everyone, Is there any way to trace this kind of errors? I'm getting all the time the same error SyntaxError: Unexpected token { and I checked my code like 30 times and I don't understand the reason. Can anyone help me? Thanks in advance. -- You received this message because you are

[twdev] Re: TW5 creating a widget SyntaxError: Unexpected token {

2014-04-05 Thread Danielo Rodríguez
OK, I found the problem deleting all the code and adding it gradually. This is an horrible way to find problems. Is there any other? El sábado, 5 de abril de 2014 22:06:58 UTC+2, Danielo Rodríguez escribió: Hello everyone, Is there any way to trace this kind of errors? I'm getting all the

[twdev] TW5 create a widget that captures message events

2014-04-05 Thread Danielo Rodríguez
Hello I want to create a widget that captures certain message events. I used part of the code of the NavigatorWidget with no success. Can this be accomplished? How? Thanks in advance. Here is what I am trying var MyWidget = function(parseTreeNode,options) {

[twdev] Re: TW5 creating a widget SyntaxError: Unexpected token {

2014-04-05 Thread Stephan Hradek
You could as well use comments, but otherwise: No: That's the only way if you do not fnd your syntax error just by reading the code. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To unsubscribe from this group and stop receiving emails from

[twdev] Re: TW5 create a widget that captures message events

2014-04-05 Thread Danielo Rodríguez
I'm still waiting an answer to the first question, but here is a related one: I'm using a tiddler that I transclude in view template. This tiddler has a button which launch an event. If I use this in the normal way, it works as expected setting the tiddlerTitle to the title of the tiddler