I have an application customizer that is deployed to tenant app catalog. App is added to a site and I have verified the feature is activated but the extension never loads. I added a console log after the onInit() and it never fires. I never even see the JavaScript file called in network tab. Work fine when debugging. Has anyone else ran into this issue?
Related
I have an Umbraco 8 application v8.14.1 which is running on Azure and is setup to run as Admin and Public instances using 2 App Services.
Admin is the master instance and used to make any CMS content changes.
Public is purely used to serve content.
I have configured these as Load Balanced Azure Web Apps using the following documentation - https://our.umbraco.com/Documentation/Fundamentals/Setup/Server-Setup/Load-Balancing/azure-web-apps-v8
Everything was working correctly for several months, I make a change in the Admin backoffice and this would be visible in the Public site within a few seconds.
However, all of a sudden this stopped working and changes made in the Admin backoffice would not be visible in the Public site, even after a couple of hours.
I had to clear all of the caches using Diplo's God Mode, make a new content change and this correctly displayed on the Public site.
My question is, what went wrong and is there any way to stop this from happening?
The logs did not show any errors.
Any help would be greatly appreciated.
I have one Azure app service,where multiple (web app)app services with different names are running.
I have to modify already implemented cookie banner which says “We are doing ....”
The banner is showing when website load. From browser, After doing “F12” I can see, where are the text written.However, when checked the source code from Visual Studio, I can’t find the text ( that is, Checked in “Index.cshtml” page from the code. ). Searched the text in entire solution as well.
Is it somewhere implemented in App services?, so that it will be visible for different applications “Index.cshtml” page load? Or am I missing something?
Note, as per my previous on prem application, it should be implemented in the code itself. Quite unsure,why am I unable to find this.
Please help.thanks.
I am creating a web app which requires a login. It seems my webview autofill/autocomplete does not work. Is this feature disabled by default? In my search through the web I have found many posts asking how to disable this feature, leading me to believe that it is enabled by default. My credentials are remembered and autofilled fine when testing my web app in chrome for android. I have also loaded gmail in my webview and tested to see if autofill worked, and I still could not get it to work. My app is set for SDK 18 and up.
Thanks
I have created my first Chrome extension/app and found out that lightboxes do not function inside the app. I created the app from the Google example kiosk app. I'm only using webview in the app and have no other customizations. It just points to a link.
I want to use the app as an auto-launch Kiosk app on a Chromebox. Via this website I found that 'alert' and 'confirm' are a disabled web feature on chrome web apps.
I am wondering if it is possible to enable alert and confirm in the Chrome app so that lightboxes will work when interacting with a website.
Thanks in advance.
Yes you can definitely call alert box inside a chrome extension, just like you would in a normal javasript file as stated in this thread.
chrome.browserAction.onClicked.addListener(
alert("Im an alert box triggered by Chrome Extension")
);
The link you provided suggests that you can create a custom popup/lightbox as a workaround. There's a complete tutorial here.
Happy coding! :)
I have created a sample Outlook Add-in and hosted the home.html and all the other files within an Azure static HTML5 site.
Without Authentication turned on the Add-in works just fine in O365 Mail. But once I turn on authentication the add-in does not work the first time.
Clicking on Retry or refreshing the whole page makes the add-in work because within this browser session you have authenticated with Azure and home.html loads just fine.
What I think might be happening is that authentication to Azure works just fine - but the OWA app then tries to load the authentication response and not the home.html page.
What am I missing and how can I get this to work?
thanks
Not sure, but one thing you can check is the loading duration of your plugin.
If a plugin is not loaded after 5 secs (not sur if it's 5 or 3...) the add in is automaticaly placed in error state.
You should see the duration with a fiddler trace.
If it's your problem, be sure to :
Minify all your javascript files to load faster.
Be sure to NOT doing some weird stuff before your welcome page is loaded. Wait after your document is loaded to do anything else.
Sébastien