@Fran-Diox It is difficult to reproduce, may be the result of elements after the destruction of the problem
C
Save
Saving
czpae86
@czpae86
0
Reputation
15
Posts
974
Profile views
0
Followers
1
Following
Posts made by czpae86
-
RE: Uncaught typeError when page quick move back
-
Uncaught typeError when page quick move back
version:onsenui 2.8.1
"Uncaught TypeError: Cannot read property ‘hasAttribute’ of undefined", source: file:///android_asset/www/lib/js/onsenui.js (25818) -
How to disable swipe on some pages
How to disable swipe on ons-navigator once configure swipeable?
-
how to use icoMoon's icon on ons-icon component?
Hi,icoMoon’s icon cannot display, how to use icoMoon’s icon on ons-icon component?
-
icon.attributeChangedCallback is not a function
Uncaught (in promise) TypeError: icon.attributeChangedCallback is not a function.
onsenui version:2.6.0my code:
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" > <meta name="apple-mobile-web-app-capable" content="yes" > <meta name="apple-touch-fullscreen" content="yes" > <title></title> <link rel="stylesheet" href="../css/onsenui.min.css"> <link rel="stylesheet" href="../css/onsen-css-components.min.css"> <script src="../js/onsenui.min.js"></script> </head> <body> <ons-navigator id="appNavigator" page="page1.html"></ons-navigator> <template id="page1.html"> <ons-page id="page1"> <ons-toolbar> <div class="center">Page 1</div> </ons-toolbar> <p>This is the first page.</p> <ons-button id="push-button">Push page</ons-button> </ons-page> </template> <script> document.addEventListener('init', function(event) { var page = event.target; if (page.id === 'page1') { page.querySelector('#push-button').onclick = function() { document.querySelector('#appNavigator').pushPage('page2.html', {data: {title: 'Page 2'}}); }; } else if (page.id === 'page2') { page.querySelector('ons-toolbar .center').innerHTML = page.data.title; } }); </script> </body> </html>
<ons-page id="page2"> <ons-toolbar> <div class="left"><ons-back-button>Page 1</ons-back-button></div> <div class="center"></div> </ons-toolbar> <ons-tabbar position="bottom"> <ons-tab page="test.html" label="test" icon="fa-home" active> </ons-tab> </ons-tabbar> <template id="test.html"> <ons-page id="coursePage"> <div> test </div> </ons-page> </template> </ons-page>
-
updated to the 2.5.3 version,the camera does not work
After the onsenui is updated to the 2.5.3 version, the Cordova camera does not work on iOS10.3, but the previous version is normal
-
how to using javascript drop down the ons-pull-hook component?
how to using javascript drop down the ons-pull-hook component?
-
how to fire the 'ons-pull-hook' component when the page is displayed
how to fire the ‘ons-pull-hook’ component when the page is displayed.
-
how to cancel the 'ons-back-button' action?
HI,how to cancel the ‘ons-back-button’ action?