How do I apply reply back buttons to whispers? - smooch

I am trying to use simple reply back buttons in my initial whisper. I would like the user to be able to choose between (Yes,No)

It's currently not possible to add reply type buttons to a whisper. The only supported button types at the moment are link and action.
If you need automated messages with reply buttons, you could achieve that using the POST message API.

Related

Can I use a user-entered text value in one section of a Google Form to populate checkbox options in the next section?

I'm trying to figure out if this is possible and if so any help on how to make it happen would be amazing. If not, I'd love to get an idea why it's not possible. I'm a novice and looking to learn! :)
I want to take a text response to one question in the first section of a Google Form and use that to populate checkbox options from a Google Sheet in the next section.
Basically, people check equipment out from my office for use with students and they can submit the form for extensions. I sometimes get confusing responses and would like to give them checkbox options based off the students' ID they enter in the first question.
Is any response information even available to use before the form is submitted?

How to attach form with th:action to an input onfocusout

I want to send POST request every time user focuses out of an input using thymeleaf, i've seen many examples of ataching form tag with button marked with type="submit" within using th:action, but i cannot figure out is there a way i can attach input into form tag and track only focusout events.
It would be greatly appreciated if someone could clarify if i can configure what type of events form tag can track. I have read that you supposed to make button marked with type="submit", but also seen input marked the same way, that gave me hope that maybe i can somehow attach the action to focusout event.
So, as #SlavaIvanov said it is no realy possible, so if you face the same task you would need to use JavaScript fucntions or some other client technology, I used JS

Placing a checkbox submission into html eblast

I am trying to send an eBlast from mailchimp with a form embedded with checkboxes that when the button is pressed it sends a reply with whatever box they have chosen. Then their responses would be put into a google excel sheet so we know who is RSVPing. Is there a way to do this? Maybe there is an easier way and Im going about it wrong. Would love your guys help. Thanks
Forms in emails are only supported by a handful of email clients. An easier option/method would be to take them to a landing when a user clicks on yes, no or rsvp button. That page can give the right confirmation measage depending on what option a user has chosen.

How to handle forms with variable number of inputs with node js

I have a form on my page where one of the items input is a list of services available, and there are buttons to add and remove inputs for more or fewer services (i.e. enter first service click add service button and another service input spot appears, click remove service button and the last service input spot is removed)
Now I need a way to handle that input information on the back end using node.js and express of course without knowing ahead of time how many services are entered. I've read in other places about posting to an array but I don't know how that works with node.js/express.
Get all the fields that can be added /removed via an array of values in the html form. On the server side, the array with be available under req.body.
Note - You will need body parser or something similar to get hold of the form inputs.
Also, if you are using ajax, serialize the form inputs before posting the form.
So for that would I just make the name properties of the inputs things like "service[0]" and "service[1]" and so on?

A DataGrid with Text, Images and Buttons

I want to realise a Chat, where the people can send messages. Each message can contain one button where the other poeple can click at. Maybe I also want to display a avatar beside each message. I was looking for a build in component like List or DataGrid, but I didn't find the opportunity to add buttons or images.
It should also be possible to resize the chat and to scroll through the messages.
What do you think? Which is the best approach to realize this?
Your going to need to be a little more specific...What technologies are you using other than your tagged stuff ?
To add images/buttons to a List or DataGrid, you will need to create a custom ItemRenderer (for List) or GridColumnItemRenderer (for Grid). You can read about this here and here