This is a note of reported bugs in ChronoForms v4 RC 3.21
I think that the majority of bugs from previous versions have been fixed, see the list for RC 3.2 here.
[list=a]There are some bugs in the Joomla! Registration action. See this thread
The Custom MooTools DatePicker action has some small bugs. The PickOnly option is missing quotes and defaults to 0/false so breaks if the quotes are added. Fix is in the file custom_datepicker_moo/cfaction_custom_datepicker_moo.php:
Also $pickerClass is undefined and the warning message breaks the code if Site Error Reporting is on.
Request to add the Remote database tab to the DB Multi_Record Loader [/list:o]
I think that the majority of bugs from previous versions have been fixed, see the list for RC 3.2 here.
[list=a]
$pick_only = $params->get( 'pickOnly', '' );
if ( $pick_only === false || $pick_only == '0' ) {
$pick_only = '';
}
$con_str = "$$('.{$params->get( 'field_class', 'cf_datetime_picker' )}'),
{ pickerClass: '{$params->get( 'pickerClass', 'datepicker_dashboard' )}',
format: '{$params->get( 'format', 'd-m-Y H:i:s' )}',
allowEmpty: {$params->get( 'allowEmpty', 'true' )},
timePicker: {$params->get( 'timePicker', 'true' )},
pickOnly: '{$pick_only}'";
$pickerClass = "Picker.Date";
Also $pickerClass is undefined and the warning message breaks the code if Site Error Reporting is on.