App crashes on launching Android DatePicker support in HTML5 - android-datepicker

I am having a webview which launches my web pages built using html5, jquery mobile and my own custom css. The web pages have date field defined using html5 tags . When I click the date field, the datepicker pops up and when I set the date and click 'Ok' my application crashes giving null pointer exception.

Related

The default out-of-the box template for Blazor doesn't work on mobile

If I create a new Blazor application (Server-side or WASM), the default template that is provided with the Counter and Fetch Data menu items doesn't work properly on a mobile device. It run's ok on a desktop browser. Is there something setup incorrectly?
On the mobile, the menu never opens. The hamburger Menu button cannot be tapped. Apart from that, if you manage to navigate by URL to another page, the page keep loading without giving any error.

Not able to open Attachments in Salesforce Lightning Chatter page iOS webview

All,
We are building a custom mobile app based on salesforce services in React native, As chatter functionality is huge we are loading the chatter lightning page in a Webview using "react-native-wkwebview-reborn".
Below is the URL used to load the Chatter page.
${APIUrls.SALESFORCE_HOST_URL}/secur/frontdoor.jsp?sid=${decodeURIComponent(this.props.accessToken)}&retURL=${encodeURIComponent(returnURL)}
returnURL = ${SALESFORCE_LIGHTNING_HOST}/lightning/page/chatter
We are able to display the chatter page and it is working well, But when we click on any of the attachment, The attachment is not opening and the page is not scrolling as correctly.
The same functionality working perfectly in Andriod.
Any one suggest the reason for this.

Populate the device data contents from thingsboad on mobile?

I have this device data that are shown in real time using ThingsBoard.
And I have an iframe to show the device data content on a web page.
If I used the same iframe on my ionic app's HTML page, I am getting all the header, submenu and other unnecessary things that are not needed in the app.
What I need is the main content area of the device data section.
Can I do that with the iframe or do I need to call all the individual ThingsBoard API's to populate the dashboard on my own?
If you are managing the Thingsboard then you can develop custom iframes with unnecessary headers/footers removed. Then you will get clean iframes to display inside your Ionic app.
In case the Thingsboard is not managed by you then you have to develop adapters to scrape the html data from the Webpage. These adapters will provide your Ionic app only the data you require.
You can use PHP Simple HTML DOM Parser for implementing these data scraping adapters.
PHP Simple HTML DOM Parser

How to start Firefox/Chrome drivers with turned off HTML5 field validation

I use Firefox/Chrome Webdriver drivers for testing my web app. This app has HTML5 field validation. When my test doesn't fill in text field with type "email" and submits form then FirefoxDriver sets focus to the field (without showing HTML5 field validation error) instead of sending POST request to server side.
Do Firefox/Chrome drivers have profile settings/preferences that will turn off HTML5 field validation?
I had the same problem and found a workaround for it by using JS script from http://novalidate.com/
Just make sure to run this script:
for(var f=document.forms,i=f.length;i--;)f[i].setAttribute("novalidate",i)
any time a new page / form is loaded.

Accessing HTML DOM Object from WINRT Webview control

I have found how to load the local html page in Webview XAML Control
Visit winrt: load local html and its resources in webview
What i am unable to find is how to access the HTML DOM Object of the Webview Control
I am developing a C# metro style windows 8 application,i want to capture the user signature,since there is no control yet in winrt xaml for that,i am trying to do that using JQUERY
My SignatureCpture is loaded in the webView,after the user has finished signing i need to read the signature,for which i have to access the HTML DOM of the WebView
I have some hidden field in the Page,i need to use document.getElementByID('') to get the value and store it in database
please refer to this sample code in MSDN Code Gallery: XAML WebView control Sample. In the 5th scenario, it demonstrates how to access the html dom.