Daniel Barreiro
Daniel Barreiro
On 30/06/14 14:45, Eddyystop wrote: > Perhaps you're thinking too monolithic about bsform, wanting > everything to be in one config object, and losing the flexibility you > need. >...
On 30/06/14 15:04, Eddyystop wrote: > You can have 'packaged' or 'default' options for, say, a table. The > dev can override some or all of them. > > When...
As of 10:15 pm, (not my usual hours) I think I got the issue about validation cracked. It was turning quite a headache, but now I think I'm on the...
I saw them. At this point I'm back to some basic design of the whole Forms thing because I'm patching too many things with the current design and it doesn't...
After my initial [suggestion](https://github.com/developit/preact/issues/526#issuecomment-290151338) I agree that implementing asynchronous rendering on the client is not feasible. Thus, I switched to doing it on the server side, based on the same...
Everything can be used as an object property by using this form: obj['1+1=2'] = 4 While on the other hand, if you had a delete property, this would not work:...
Look at the example page, the highlighter used there gets confused and it is colouring delete as a keyword, paste that example into pastebin, jsfiddle or any IDE such as...
I have found that defining an onRefreshView method in your binder allows you to re-attach your event listeners. ``` javascript onRefreshView: function (node) { this.bind(node); }, ```
See the use of refreshView in: http://developer.yahoo.com/cocktails/mojito/docs/intro/mojito_binders.html#binder-examples
Sorry, I had just discovered that method myself so I got excited and replied too soon.