Mark Kemper

Results 6 comments of Mark Kemper

+1 this issue. I have hacked the start method to pass history.state ``` page.start = function(options) { options = options || {}; if (running) return; running = true; if (false...

@macek Just like to add my use case to this discussion . We call serializeObject() on the form and then merge it into another object. So not have the false...

Ended up adding a extra method onto the FormSerializer to support this because trying to work around it ended up being a nightmare. ``` FormSerializer.prototype.serializeObjectIncludingUnchecked = function() { if (this.length...

Not sure that will help as I need to set the value to false in the resulting js object. In your example the properties would end up with true (or...

Thanks, that looks better but (just glancing the source) won't the value be a string "false" instead of the literal false? On 16 July 2015 at 14:40, Paul Maček [email protected]...

Always open to refactoring . Can you provide a code example of how you would like to use the api?