Google Form Prefilled shortcut not working - forms

With the recent "upgrade" to Google Forms saving data, prefilled URLs no longer seem to work.
Steps to recreate problem:
create a Google Form
Create a prefilled URL for some of the fields
Open the form on an Android phone
Create a shortcut on the phone's homescreen from the "Save to homescreen" option on the form's menu
Open the form from the shortcut and submit a response
Open the form again from the shortcut -- the form will no longer have prefilled values.
Anyone have a workaround for this? I have a fairly large form that I use to track some tasks with some standard response values. This worked perfectly before the "upgrade" but now is useless saved as a shortcut. I can still use the prefilled URL from an email or another rich text object available on the phone, but needing to open additional documents is frustrating after getting used to the convenience of one click of an icon for years.

I've had the same issue. Not quite as convenient but I've posted the URL of the prefilled link on a Google note so its still one click away with Google note on the home screen.

I had the same issue. The fix that worked for me was to remove the "autosave" option in the forms settings.
Settings -> Presentation -> Disable auto-save for all respondents

Related

Using spfx webparts, would there be a way to either programmatically send an email which has a link to open a modal or using flow?

I want an spfx made webpart that I've made be able to send an email (I'm using IEmailProperties at the moment) which provides a link to a modal form?
For example:
User clicks button in webpart, form loads.
User fills out form and submits it to SP list.
Form sends email on submission. Email has a link to the actual item created, so when the user clicks the provided email link, it opens up the modal form.
I would presume that the user would HAVE to be sent to the SP page where the webpart is unconditionally, but would it be possible to open up the modal corresponding to the SP list item?
Is this feature available in SharePoint framework, because if it isn't, compared to something like InfoPath 2013 or PowerApps it's quite a limitation.
I've researched this with several shallow Google searches and on gitHub for any premade stuff, but alas there is nothing that I've spotted.
I've been told IT IS possible:
"Yeah, they’d have to visit the page. Email clients don’t do JavaScript so you can’t really do interactive stuff there. If you want to take them directly to a page that then displays a modal, that’s plenty possible though. (e.g. display the modal based on if the URL contains a certain string)"
But wouldn't know how to do the above, can anyone start me on the right path?
Regards,
T
In the email, pass a query string containing the item ID/list ID etc of the item, then have the webpart read the See: How can I get query string values in JavaScript? If your values exist. If they do exist, then open the modal using some kind of framework like bootstrap or fluent UI. You can write your own form using PnPjs or use an iframe potentially to display the OOTB edit form.
Additionally, you can link to any page in SharePoint provided you use an extension instead of a webpart to host the modal. You can install extensions tenant wide, and have it listen for the query string.

How can I add upload Image feature to Facebook Comments Plugin?

I successfully implemented facebook comments plugin in my website.But it only allows users to post only text data.
I searched a lot but unable to find resources for these question:
How to add upload Image feature to this plugin?
Is there a way to make the uses post he comment just by pressing enter rather than clicking Post button(Remove Post button and make enter keyboard key as default submit button)
Incase the ans is No for any above questions:
Please suggest any plugin's that helps me to achieve those features. The users should be able to post comments and upload images with out signup to that plugin providers
How to add upload Image feature to this plugin?
Not possible.
Facebook has not implemented image upload for the Comments plugin, and you can not “add” anything to it yourself.
Is there a way to make the uses post he comment just by pressing enter rather than clicking Post button(Remove Post button and make enter keyboard key as default submit button)
No.
There is not configuration option for this, and since the plugin runs inside an iframe from a different domain, you don’t have any access to it via JavaScript either.
As of Sept 2010 FB has an "add image" icon on the FB plugin, but it does not work all the time. Last night it worked fine on 20 or so pages, and today on 5 more. Then just now, on a recently modified page, it no longer works. Text only.

Can't find where *exactly* my app submission is wrong (rejected because of translation issues with open graph stories)

I have submitted a custom open graph story, but it's being rejected with this message:
Open Graph
Donate (Action Type)
Submissions, actions, objects and usage instructions must be submitted in English. You can translate actions and objects in the Localize tab of the App Dashboard.
If i click on the localize tab, I find that all strings are translated. Everything else in the app was previously accepted, so there should be no issues elsewhere (and the "Open Graph" tab is the only one that shows a warning icon).
Where can I find exactly which is the problem with my submission?
I found out. Every time you change some text in your custom stories, you need to delete and reimport all the translation strings from the "Locale > Translate open graph stories" menu. After reimporting I found some untralsated strings.

Opening HTML form attachments in iOS5

I have received an email on my iPhone (with iOS 5.0.1) with an HTML attachment. The HTML attachment contains a form to fill out and submit. The problem is that submitting the form does not work. I click the Submit button and I get switched Safari, but the form information is not posted. Instead, the URL indicated by the form gets requested as via the GET method.
Is the problem that the Quick Look viewer is simply a passive viewer that does not do forms? I'd like to be able to open the attachment in Safari instead, but that does not appear to be an option. If a tap and hold the attachment, the only options I get are Quick Look and Dropbox.
Thanks!
After much research I've decided it simply does not work. Probably by design as a sort of security feature. I discovered a similar problem with Android phones.

Redirect to a link using the default broswser in Windows Form based application

I am not use: Process.Start (String, String) to open a link. But every time the browser open a new tab or new window to open the link.
Is there a way that to open the link in the latest opened page? Just redirection, no new tab or new window?
This is not really up to you (the programmer) to decide but to the user: Some browsers have an option for this setting. You shouldn't try modifying the user's selected browser behaviour.
Someone of my team did this once in an instant messenger application that we were writing, without asking for other opinions first. The users were super annoyed that our application kept overwriting their opened pages.