• 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: Required fileds description event

Required fileds description event 10 years 5 days ago #31112

Hello,
How to make the description field event required.
For a classical fields in edit.js:
// Check for event name
		if (jQuery('#jform_name').val() == '') {
			jQuery('#jform_name').addClass('invalid');
			jQuery('label[for="jform_name"]').addClass('invalid');
			tab1 = true;
			msg.push(Joomla.JText._('COM_RSEVENTSPRO_NO_NAME_ERROR'));
			ret = false;
		} else {
			jQuery('#jform_name').removeClass('invalid');
			jQuery('label[for="jform_name"]').removeClass('invalid');
		}
But it's no good for description (TINYMCE editor)

Thanks
Christophe
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!