Join the Team Forms community

Y
Yors
Offline, last seen 10 hours ago
Joined January 13, 2025

Is there any work around to hide the options in a dropdown component? I want it to behave like a search bar where it will suggest options when a user inputs a text.

The default dropdown is like this:

My desired output is that when the field is focused, it would not show all the options. Instead if I type for example, the letter G, then all options starting with G will show.

2 comments
E
Y

I added an input field inside my survey component by inserting <input></input> inside my questions fields under the Data tab. Output is shown on the second photo.

Now I'd like to add another column for another input field to the right of the first column.
Also, I like to have table headers for the first and second column.
Or are there any other workaround to achieve the same output?

2 comments
Y
E

I want to populate fields in my Team Forms based on a selected item in my SharePoint list. I want to use it in a case such as:

Name Email Contact Evaluate
Test use test@gmail.com 1037435467 Evaluate Candidate (hyperlink)

When I click the evaluate column, it would redirect me to my form which had already populated Name, Email and Contact for me.

Anyone who had already implemented a case like this? I'm also open to any other workaround that would have the similar output :)

1 comment
E

I know it's more of a Power Automate question rather than a Team Forms one. But does anyone have an idea of how to get the label of the radio button value I selected using Power Automate. I want to get the label of each choice :

The current data that I can access is in this format:
"data": {

    "Monday": "Salad",

    "Tuesday": "Pork",

    "Wednesday": "Chicken",

    "Thursday": "WFH",

    "Friday": "Pork",

    "name": "Test User",

    "email_address": "test@gmail.com",

    "account": "Account Test",

    

  },

1 comment
E

Is there any way to change the text "Add Another" in the add another button in a data grid component?

1 comment
E

I have this form and I want my form responder to respond to it only if the time is between 2 pm to 7 am. So I put the fields in a panel and used this JavaScript to conditionally show the panel.

TypeScript
const currentTime = moment();
const startTime = moment().set({hour: 13, minute: 0}); 
const endTime = moment().set({hour: 6, minute: 0}); 

show = currentTime.isBetween(startTime, endTime);


It's currently 2:31 PM here but the panel is still not showing.

4 comments
E
Y

I have a text field that I'm actually using as a field where respondents input their email. I want to put a validation that checks if the inputted text ends with our company domain. How can this be achieved?

1 comment
E

I want to set a deadline for my Team Forms, similar to the feature in Microsoft Forms, where users are unable to respond to the form after the specified deadline.

1 comment
E