You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use Boilerplatejs for jquery mobile development but I got it difficult. Do you think it is appropriate? How can I proceed? Any help will be appreciated!
The text was updated successfully, but these errors were encountered:
I know people use BoilerplateJS with jQuery Mobile. BoilerplateJS is just some startup code to structure your architecture, therefore I dont see an issue of using it with whatever UI framework you prefer. Also the BoilerplateJS code is not a library, so feel free to change it as you want. I know that the code in open source repository works with Safari based mobile browsers without any issue, and I believe it will work for most of the other mobile browsers without an issue. But I haven't done thorough testing of that. Even if you encounter an issue of browser compatibility, you may fix it on the code, as BoilerplateJS code is just a part of your source code base.
Hi,
We have noticed that signlas.js and jquerymobile when used with require.js causes an error when the scripts are defined in the body tag. (More info: http://stackoverflow.com/questions/9522421/separating-jquery-mobile-1-1-0-from-amd-requirejs) To rectify this you can use another library for routing and remove crossroads, signals and hasher files.
The second issue that you may face is that after dynamically adding dom elements, the jquerymobile styles will not be added. You may need to call the necessary methods in your component.js file to refresh such elements.
e.g.
$("#list").listview();
$("#list").listview('refresh');
If you are using kncckoutjs, you may concider writing knockout custom bindings for this purpose.
I want to use Boilerplatejs for jquery mobile development but I got it difficult. Do you think it is appropriate? How can I proceed? Any help will be appreciated!
The text was updated successfully, but these errors were encountered: