I want to set default values for fields inside coral ui multifield. I tried to use cq:template but not sure of how to set values for fields inside aem multifieds. Can anyone help me out with this?
Try using value property in fields that you want to have default value.
Related
I use Typo3 10LTS with the default form extension. I want to select the receiver of the form based on a value in a hidden field.
But of course the hidden field doesn't contain the real email address but only a key value.
Thanks,
Stephan
Seems to be possible via dynamically set finisher values based on formValues conditions
I am using Sugar Professinal 6.4.4.
The problem i am facing is this, that when i create a custom field of type Date (Not DateTime) and don't assign a default value to it. Then when i use that custom field in Edit and Detail View of a module and save the record without assigning any value to that field in Edit View, Sugar after saving the record automatically assign the current date to that field which gets visible in Detail View. Though in database the value for that custom field is still Null.
How can i stop this defualt behaviour of automatically assigning current value to that custom field?
If you want to save the default value as NULL, you can set the default value in fieldset as
['display_default']= "''";
If you want to save the current date, use this
['display_default']='now';
I have inside of a form one hidden field, which must be empty when the form is submitted.
Is any value in it, i want to set a flag in the database column.
How can i realize the check if the value of this hidden field is not filled?
Is it an issue for controllers or for models?
It is an issue for the controller. You want to check the value of that field in the create and update actions and store what ever you want to store there.
i have 3 dropdownlists that i need to filter my datasource at runtime.
Each of the dropdownlists must be combined with the other two BUT they also have a 'special' value of "ALL". in this case i want to disable filtering on the specific filed and show all values.
Does this come with some out of the box functionality from asp.net or i have to build the string every time ?
After searching in many places i finally found out that there is NOT an out of the box functionality of asp.net to dynamically build WHERE clauses based on the values of every control that i want to participate in filtering.
I ended up with custom coding on the gridview selectedindexchanged event that builds the selectcommand text and binds the gridview again.
works fine!
In GXT I want to create a form where a single field can have multiple values. so once one value is provided user should have option enter another value for the same field, similar to how we attach files in an e-mail.. what is the best way to do this?
One way to provide a button with plus symbol in the form. Clicking that button should add a field to the form dynamically. User can use that field to provide another value.
If you are talking about a single control, which can capture multiple values, can you try Multi-Select field like the one explained in this thread?