I have a text component but it is not giving me the option to insert a default value.
Any idea why this may be happening
I have a text component but it is not giving me the option to insert a default value.
Any idea why this may be happening
Is this within a form or on a detail screen?
detail screen
On a detail screen you wonât have a default because it pulls whatever value is in the column in that row. Even if itâs empty.
If you want to set a default on a detail screen, you would have to do it with actions on the way into the screen.
Its the main screen (landing screen). I am sending people to it directly.
I can do it when they press submit, but that means I know need to created multiple (8 so far) actions where the only difference would be this one field.
Also I am not seeing a way to create a copy of an action, is that possible ?
Could you use a form container on the detail screen instead, or does your custom form have some calculations that canât be done within a form?
To copy an action you either duplicate the component with that action, or go into the action editor and duplicate an existing action there.
I am using a container. What are you thinking ?
A âcontainerâ or a âform containerâ? A form container is a regular form embedded within a detail screen instead of a separate form screen.
A container in 1:1 setup to give me 2 columns. not a form container.
Try the form container and see if that fits your needs. Just treat it like a normal form screen.
Only downside is that you wonât have the separate container column layout. Itâs all top down with the form container.
Form container will not work for me, as I need the 2 column layout, and you can put a form container into a container. I am not too confident with CSS to try that.
I think I may just duplicate the actions and do it that way.
Yeah, youâll have to get a little creative then. So is this one field an entry component that a user can change to something other than the default, or is it a behind the scenes thing?
User cannot change, it is behind the scenes. What I actually did was create 1 landing page, with a custom form.
I then duplicated this form multiple times to create different landing pages, but the form for each of these landing pages is collecting the basic info and putting it into one table.
I need to track which page the information is being collected from. So what I wanted to do was put in a INPUT TEXT component (make it invisible) and custom set the value on each of the landing pages.
Couple thoughts off the top of my head.
interesting
The first one is a very novel way of doing this.
Thanks I will play around with thse.