Re : Accessing
the content select tag is not supported. We started work on it, but its development stalled. If you are interested in adding it, I can start you on it.
View ArticleRe : When is next version of JMVC coming out after v3.3 and Is there a...
Yes, your build scripts will change. To migrate steal, you can follow: http://stealjs.com/docs/StealJS.migrating.html
View ArticleRe : can.Model.List: Should it automatically update when model created/updated
They automatically add "created" items They automatically update "updated" items can-connect can do this: http://connect.canjs.com/
View ArticleRe : Dealing with subclasses
Bryon, can-connect (http://connect.canjs.com/) might be useful. It allows you to create different instances based on a connection. Another alternative might be to overwrite Document.models so that...
View ArticleRe : Dealing with subclasses
Thanks for the suggestions. I like the idea of overwriting the models method, but I've decided to go down the safe route to avoid unforeseen issues with doing anything too fancy, I've decided to scrap...
View ArticleRe : Accessing
I "might" be interested. The other way I was thinking was I could do my manipulation in the "init" method. I'm just not sure how I feel about that.
View ArticleRe : Accessing
Can you solve your problem without DOM manipulation? In my components I use DOM manipulation only as a last resort, try to use viewModel and templates/helpers to do everything. Some examples in...
View ArticlePrecompile mustache templates
Hello guys,I need help on precompiling mustache templates. I installed https://github.com/daffl/can-compile module, and now I have file (view.production.js) with single template in it:...
View ArticleRe : Accessing
I wouldn't necessarily say that I need to use DOM manipulation. Here's what I'd like to be able to do. Wrap some DOM, let's say a list of div tags, with a custom tag such as <team-list> divs...
View ArticleRe : When is next version of JMVC coming out after v3.3 and Is there a...
Hey Justin, Awesome thanks for the feedback and link, So I am using the .then all over the place in my application. In the migration guide i do see that is states to switch to using "deps" inside of...
View ArticleRe : When is next version of JMVC coming out after v3.3 and Is there a...
https://github.com/canjs/steal-can-example/blob/master/package.json#L51
View ArticleRe : When is next version of JMVC coming out after v3.3 and Is there a...
Your the man, thanks for this information Justin, I had a chance to go through yesterday your can and steal example, and viewing how those dependencies were added. I have put a simple example together...
View ArticleRe : When is next version of JMVC coming out after v3.3 and Is there a...
I figured it out, thanks for your help and direction Justin, So digging in more and trying all sorts of configurations, it boiled down to my paths. So in my package.json file looks like. { "system":...
View ArticleHow can I exclude some files/modules from the bundle?
Hi, I know there is an "ignore" option for the transform but I didn`t find any similar functionality for the build. The question is - how can I exclude some files/modules from the bundle?
View ArticleRe : steal.js not loading resources in order on ie 9
Did you ever get this to work. I believe I am encountering the same issue. Application works fine in dev mode but steal.build production version does not load library dependencies in correct order...
View ArticleRe : steal.js not loading resources in order on ie 9
Is this with the old steal? If so, please try to upgrade to the new StealJS. You can even get a bitovian on a hangout to help.
View ArticleRe : Accessing
I thought I could access the inner DOM of the custom tag within the init method, however that doesn't seem possible. There doesn't seem to be any DOM to access during init. Does it get pulled out and...
View ArticleRe : Accessing
I think you want that code in an "inserted" event handler. But still insist that accessing the DOM is a last resort... what is it you want to do with each row?
View ArticleRe : Accessing
Isn't the element already inserted into the DOM at that point? I'd like to manipulate before that happens. Here's another simple example. Let's say I was creating a carousel slider of pictures. Here's...
View Article