Why Built-in Modules -> modal not working on HTML5 - weex

on html5 Preview URI : http://dotwe.org/raw/htmlVue/8f4f21cabee879fab13daa626049f4d5?1509479282984
Also #click isn't working on web for the <text> component

Related

Capacitor native menu with embedded website

I develop a platform used by teachers.
This platform uses "old" technologies like PHP, JS, JQuery etc ...
I want to offer a mobile application that would allow you to use the web platform (already responsive)
I already did two years ago a first version of the mobile application with Cordova:
The Cordova application requests a login and password, makes a token request to the platform then uses the token to load the pages with Window.cordova.inappbrowser.open in full screen
It works well (with some functions to manage the photo, downloads etc).
Today, I want to offer better: since Cordova is starting to be obsolete, I turned to Capacitor Ionic.
I want to use the same operation for the login (it already works) then load a native page with a menu and a space where the pages would be loaded according to the selection in the native menu.
But being new in Ionic / Capacitor / Angular, I am a little lost:
Use WebView
Make a routing to the web page
Use a JS function that loads the page in the div ...
Here is the current state the application:
I want to load a page like https://alpha.website.net/index.php?page= in the white part when the user clicks on the menu on the menu
Thank you

tinymce v5 page embed plugin bug

When inserting iframe via page embed plugin and setting the 'name' parameter to iframe, it does not exists in resulting html source.
It's also actual in plugin demo at page https://www.tiny.cloud/docs/plugins/premium/pageembed/ for tinyMCE v5.
Is it possible to fix it in one of the nearest releases?
iframe dialog
html source code

I am using in app browser in ionic . Its opening the url on the mobile browser instead of app

I am using in app browser in ionic to implement my web in app.Its working fine but its opening the url on mobile browser instead of opening it on mobile app. I am using this in my .ts file
ngOnInit(){
this.iab.create('url','_self','location=no');
}
So adding _self: Opens in the Cordova WebView if the URL is in the white list, otherwise it opens in the InAppBrowser.
So you need to have _blank instead.
Following should work as expected.
this.iab.create('url','_blank','location=no');
More info can be found here

Is there a way through which I can embed external HTML page as a component at run time in ionic 3

We know that we can use pages or components in ionic. These pages and components contain .html files, which have html markup. When we build the app, all these files are bundled into the app.
My question is whether we can use or embed external .html files and act on that .html file.
For example: if we have a login page which contains username and password fields and submit button. We have already defined css for this page. There is a requirement for my project to embed external .html file and use it as login page. It may have a different css.
if you mean that you have html tags in JSON response for example and you want to add them to ionic just do :
<div [innerHTML]="your-JSON-response-Html"></div>

Ionic 2 In App Browser - Keep user within app, currently all website links go to Safari

I am wrapping a web app I have built in an Ionic 2 application so the client can release on the app store(s).
I am using:
https://ionicframework.com/docs/native/in-app-browser/
Which correctly loads up my testing IP but any anchor tags open up in the normal Safari browser. How can I keep the user within the in app browser?
This is how I set up the browser:
const browser = this.iab.create('my.ip.add.ress');
browser.show();
I have tried changing the links on my website to use all of the following variations:
target="_blank"
target="_system"
target="_self"
But nothing works.