IE10 Specific Issue : Binding of Input event is not working
Hi,I am binding an input event in Javascript.this.options.textField.on(eventName, $.proxy(this.fn, this) );There are a list of input events such as 'text', 'keypress', 'keyup', 'paste', 'cut' etc.We...
View ArticleRe : Help structuring JMVC folders
Structure looks good. Having a folder for reusable stuff is a good idea. Not sure your widget should have its own model and for the past year or so I've been putting the views in the folder next to the...
View ArticleRe : steal.config.completed is not working
Thanks worked for me.Do you want me to change the docs and submit a pull request
View ArticleRe : steal build is throwing java.lang.StackOverflowError exception when...
Any one?I can create a failing testcase and submit a pull request.here is a related onehttps://forum.javascriptmvc.com/#Topic/32525000001324021
View ArticleRe : 2 way live binding with EJS
Yes, but currently, you have to make helpers yourself.
View ArticleRe : steal.config.completed is not working
That would be great!Sent from my iPhoneOn Aug 13, 2013, at 5:19 PM, JavaScriptMVC Forum <noreply@zohodiscussions.com> wrote:
View ArticleRe : 2 way live binding with EJS
Cool!.... I found your weekly widget post. Which is very informative.http://bitovi.com/blog/2013/01/weekly-widget-two-way-mustache-helpers.html
View ArticleCanJS Control inheritance?
Hey there,Is there any way to inheritance?I got controller with 4k lines and try to separete it for some more files. Some of code I need to use at another controllers, so I need inheritance.Thanks for...
View ArticleRe : Best practice for using steal with bower?
Have you tried putting the dev path in the stealconfig with all of the others? I believe stealconfig is fetched before dev.
View ArticleRe : Best practice for using steal with bower?
In the revision of steal I'm using, it is not. dev.js is always put first.
View ArticleRe : CanJS Control inheritance?
MYAPP.MyBaseControl = can.Control({},{});MYAPP.MyControl = MYAPP.MyBaseControl({},{});
View ArticleRe : new
We don't have anything that will walk you through JMVC + php / mysql.However, if you can figure out how to create a REST service with php + mysql ( maybe with:...
View ArticleRe : Is there an established pattern for JMVC fixtures and their use with tests?
Yes, we often uses fixtures for tests, especially tests for widgets that use a model internally.In a recent application, we created some high-level model tests that allow us to write a single test that...
View ArticleRe : js steal\getjs behind Proxy
getjs is no longer supported after github changed their API
View ArticleRe : steal.config.completed is not working
Actually I did not, github did that.I added a pull request for a issue 9 days ago and tried to create a new one for this and got a error saying "Pull request already exists" and it included this commit...
View ArticleRe : Load dependencies first
I think "deps" is missingsteal.config("shim",{ "widgets/mywidget1.js" : { deps: ["jquery"] }});If you want to do it in index.html// index.html<script type="text/javascript">steal = { shim :...
View ArticleRe : Load dependencies first
I just created a new entry for all our scripts in config.shim. Seems to be working fine now. I thought there was a way to specifiy multiple dependencies, something like: shim: {'*': deps['jquery']}
View Article