Recursive call of Component
Does the recursive call of a Component supposed to work? I'm trying to create a taxonomy tree using Component, it works with the first level, insert the 2nd level components, but they are never called....
View ArticleRe : can-click doesn't work in a certain instance in Chrome
I have created the fiddle :ExampleI will also create a github issue.
View ArticleRe : A new steal is on its way
We'll be having a hangout to talk about it on Friday:https://plus.google.com/events/cibp5qahp97uqjvva0fbcsa5ap0
View ArticleMigrating to the new Steal
As already mentioned, a completely new Steal is in the making and in order to clean our repository up and move to real semantic versioning we migrated the old StealJS history to...
View ArticleRe : A new steal is on its way
@Cherif, it's in master now: https://github.com/bitovi/steal/blob/master/README.md
View ArticleRe : Recursive call of Component
It should work, yes. You might have discovered a bug, I would file it.
View Article/ (slash) convets to %2F with pushstate
Why when using pushstateif I access some url with slash it converts to 2%F ?if I access my-domain.com/section/ I have my-domain.com/section2Fen in the urlwhen I click <a...
View ArticleRecursive call of Component doesn't work
Calling a Component from itself seems to fail, it inserts the component tag to the page but this doesn't trigger to call the Component again. See here: http://jsfiddle.net/BigZolo/APzH6/2/
View ArticleComponent doesn't refresh when context changes
I would like create an article list in which the parts of the articles rendered by Components. De article list itself also a Component, this is the template:{{#each rows}}<div class="article">...
View ArticleRe : Component doesn't refresh when context changes
What makes it more interesting (at least for me), that I added "{scope} change" event handler to the subcomponents and they can see the scope changes but does not updates their templates.
View ArticleIssue with models that have attributes with "." in their name.
Hi,I have a model object that has a property called "uddi:com.test:status".When I try to reset all of its attributes: this.attr({}, true), I get this error: TypeError: current is undefined from...
View ArticleRe : Component doesn't refresh when context changes
If I don't define scope with the scope: property, just let the component to use the context, it works well. But when I uses scope, it's never updated after the first initalization.
View ArticleRe : A new steal is on its way
Is there an example of config for new steal to work with can.js? I can not make correct stealconfig to make it work.Or it seems that it is not ready for new steal?
View ArticleRe : can-click doesn't work in a certain instance in Chrome
Does anybody have any idea how I could implement the same functionality without using the method used in the above fiddle? I really have to run this in production, and I'm not sure what to do.
View ArticleModel inheritance and parseModel functionality
Hello,I'm working on my current project and got confused by how parseModel actually works. I have a base model like abstract QuestionModel that extends can.Model and provides customized REST methods...
View ArticleRe : can-click doesn't work in a certain instance in Chrome
It is really not clear what does not work and what you are trying to accomplish. When making a fiddle please provide comments that will make it able to understand what doesn't work and how it should work.
View ArticleRe : can.route.map - working with arrays
Nobody knows or nobody uses can.route.map? For me it's one of the best features recently released.I've been working with JavascriptMVC and CanJS for more than 3 years and I really like it. The problem...
View ArticleRe : can.route.map - working with arrays
Have you tried to define the default value of the array as a new can.List(), like 'value: function(){return new can.List()}'?This should keep the array type even all elements removed from it.
View Article