With the new iOS10 notifications, is there a way to have action buttons always displayed without having the user swiping / force touching the notification for them to appear below the notification?
No. As before, the system controls the notifications UI and you have no control over it. Even if users set the notification style to "Alerts", the actions still will not appear unless the user interacts with the notification.
Related
I have an ajax form with some questions of choice but every question will be displayed on new screen (screen by screen) by button.
I want to track users behavior on my form page. I want to know after which question user has left the page (which questions they filled up)
Also I would like to know from which devices they have visited the form page and how long they were on this page
Is it possible to track all of this by GA or GTM?
If the form is screen-by-screen as you said, it sounds like you need to track two things.
An event for clicking the "Next" button
A virtual pageview for each screen.
This way, you can look into your Exit Pages report to see what screen the left the page from.
As for device tracking information, that type of data is automatically captured by GA.
So, basically. You'd have a virtual pageview for the first screen (assuming this form is a popup modal). If it's not a popup modal, then you'd just have the normal pageview for that first screen.
For instance, if the user has to click a link/button for the form to start, then you'd, ideally, fire an event for clicking that link/button, fire a virtual pageview when the first screen loads, fire an event when the user clicks the next button, then rinse and repeat for the subsequent screens.
Also, it may be a good idea to track the last screen's "next" button (or "finish") button as a separate event. Then, you can see in your events report who has filled out all of the screens and submitted.
Another thing worth pointing out: If you also want to show which question was the last one filled out, you can provide the name of the question (or an id, or some kind of brief and canonical identifier) in the virtual pageview as a custom dimension.
I have my user in the profile page, and to get there you need to go trough the phone authentication and userinfo gathering. But I don't wanna allow them to go back to this two pages, and when I press the back button on my cellphone it does that, how can I fix it? thanks.
I could do something like when this button is pressed it finishes the app, but I don't know how to do it.
I am creating a plugin to send a one time password (OTP) to the user when the place order button is clicked. When the user clicks the button, the number from the phone number field must be captured and an API must be called to send the OTP. After that a page with an input text box to enter the OTP must be present. If the user doesn't verify the order with the OTP, it must not be placed.
I am unable to find any hook to place such a textbox area and for the order placing.
I have grid in my ASP.NET page (actualy it's Telerik RadGrid). There is GridButtonColumn, and OnItemCommand event is called when user clicks the link in this cell.
Right now, after user clicks, some data is prepared in the background and sent by e-mail. At the end of my method I want to display to user, that operation was succeeded. Any ideas, how can I reach that goal? I cannot use JavaScript in this event (there is no OnClick event or ClientScript property), and I want user to stay on current page, so also no Response.Redirect can be used.
Please, share some ideas, how to inform user, that operation was successful.
Javascript is the best option , To display Alert or Popup to user.
You can also do one thing , Place One DIV on Header of grid and give some style to DIV and display your message on that div.
How to extend the session time. There are many form in my application like parent and child forms. So how can I make pop up to appear when session times out and the pop up should appear on the form where the user is currently in, when popup comes I have to disable all forms like(they should be transparent (i.e) user should NOT be able to edit them).
how can i extend the session when I click on the OK button. Please can anyone suggest me
You can have a javascript timer running on the page when it loads. When it gets close to the session time out you fire a modal popup with a button to extend the session.
Using a javascript library like JQuery or JQuery UI would make the modal popup real easy to show.
The extender button can be a fake postback that automatically extend the session.
Here are some helpful links:
http://forums.asp.net/t/1136242.aspx
http://forums.asp.net/t/1471076.aspx
http://forums.asp.net/p/1207721/3094847.aspx
Any postback / request to the server will extend your session window.