• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Mandatory hidden textboxes shows asterisk

Mandatory hidden textboxes shows asterisk 2 years 3 months ago #41770

Hi all,

I have some mandatory textboxes which are hidden (and used for calculations)
https://ibb.co/V9sxkjh

In additional tributes I have:
style="display:none;"

They are hidden, but because they are hidden the asterisk does pop up.
Can I also have them hidden totally (so also not having a big white space)?

https://ibb.co/wY5DtLD
The administrator has disabled public write access.

Mandatory hidden textboxes shows asterisk 2 years 3 months ago #41771

  • dragos
  • dragos's Avatar
  • NOW ONLINE
  • Administrator
  • Posts: 559
  • Thank you received: 102
Hello,

While editing your form go to Form Properties > CSS area and add something similar:
<style>
 
.rsform-block-your_field_name .formControlLabel, .rsform-block-your_other_field_name .formControlLabel {
    display:none;
}
 
</style>

Replace 'your_field_name' and 'your_other_field_name' with the actual names of your fields from where you don't want this asterisk to be displayed.
The administrator has disabled public write access.

Mandatory hidden textboxes shows asterisk 2 years 3 months ago #41776

Last Edit: 2 years 3 months ago by martijnvanhooff89. Reason: edit
The administrator has disabled public write access.

Mandatory hidden textboxes shows asterisk 2 years 3 months ago #41778

  • gunerguk
  • gunerguk's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 29
  • Thank you received: 3
Hi,

Add this:
.rsform-block.rsform-block-risicogroep {
	display: none;
}
 
.rsform-block.rsform-block-risicopercentage {
	display: none;
}
 
.rsform-block.rsform-block-adviesid {
	display: none;
}
 
.rsform-block.rsform-block-aantalkm {
	display: none;
}
 
.rsform-block.rsform-block-rondwereld {
	display: none;
}
 
.rsform-block.rsform-block-akkoordenquete2 {
	display: none;
}
 
.rsform-block.rsform-block-totaalscore {
	display: none;
}
 
.rsform-block.rsform-block-totaalscorepercentage {
	display: none;
}
The administrator has disabled public write access.
The following user(s) said Thank You: martijnvanhooff89

Mandatory hidden textboxes shows asterisk 2 years 3 months ago #41780

Thanks :)!!!!!!
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!