The tabbar is currently not written in a way that allows for dynamically added tabs. This is something that we are considering for a future release but unfortunately it is not possible right now with the plain JS version of Onsen UI.
emccorson
@emccorson
Posts made by emccorson
-
RE: Dynamic view update
-
RE: Fail while building iOS release
Since you are on Pro plan, it might be easiest to open a support ticket with Monaca Support Team. They will be able to access your project and debug it. From the information you provided here it’s not possible to say what the problem is. If you need further help, please let us know.
-
RE: Create "stackable" pages with Cordova + Onsen UI?
There is nothing like this in Onsen UI as far as I know. Actually, I’m not sure what you would call this effect either. Can you tell me what app uses this effect as an example?
-
RE: Ionic 3 + Angular 5. SQLite open database
If the plugin variable is undefined, check the following:
-
The plugin is being installed during the build. You should see it in the build log.
-
You are accessing the plugin variable after the
deviceready
event. You can make sure of this by adding an event listener and using the plugin variable in the callback function e.g.:
document.addEventListener(‘deviceready’, () => {
// call the variable here
});- You are calling the correct variable. You can verify the correct variable by going to the plugin’s plugin.xml file (usually available on the plugin’s GitHub page) and checking the target of the
clobbers
tag e.g.:
<clobbers target=“FirebasePlugin” />
This means the variable is
window.FirebasePlugin
.- If you are using Monaca Debugger, make sure you are using a Custom Build Debugger, not the App Store version of the Debugger. The App Store version only includes the core plugins, not third-party plugins, so you need to create a Custom Build Debugger by selecting the ‘Custom Build Debugger’ option from the Build for iOS or Build for Android page. This will create a version of Monaca Debugger with all your project’s plugins.
-
-
RE: Line Length HTML Problem - editor.maxTokenizationLineLength
Unfortunately it doesn’t seem there is much that can be done about it from the user-end. I meant that if you manually split the lines (so you don’t have very long lines), it shouldn’t be a problem - is that the case?
-
RE: Line Length HTML Problem - editor.maxTokenizationLineLength
It’s specifically a setting in Monaca Cloud IDE, but I believe that it is not possible for users to set it. Is there still a problem once you split the lines?
-
RE: Line Length HTML Problem - editor.maxTokenizationLineLength
It looks like the only editor configuration that can be done is through the Config -> Workspace Configuration page but unfortunately it doesn’t seem to include the setting you need. I think the editor used internally is Monaco (with an ‘o’) so you may be able to find some help in its documentation.
-
RE: REPORTING FAKE CONTENT
Thank you for the report. We have now removed the spam account.
-
RE: How to remove background from image?
I’m not sure I understand your question - can you please explain in more detail what you want to do?
-
RE: Android Release Build
It looks like this might be a problem with cordova.plugins.diagnostic 6.0.2. Please try updating your package.json to refer to cordova.plugins.diagnostic 6.0.4.
See here for more details:
https://github.com/dpa99c/cordova-diagnostic-plugin/issues/440