A new ChronoForms 8 update is out, v8.0.29, here is a list of the changes and new features:
Added Mask variable setting for improved mask options control:

You may now use advanced mask options to do date entry:

let settings = {
mask: Date,
lazy: <CHECK>,
autofix: true,
blocks: {
d: {mask: IMask.MaskedRange, placeholderChar: 'd', from: 1, to: 31, maxLength: 2},
m: {mask: IMask.MaskedRange, placeholderChar: 'm', from: 1, to: 12, maxLength: 2},
Y: {mask: IMask.MaskedRange, placeholderChar: 'y', from: 1900, to: 2999, maxLength: 4}
}
}
New Text Node view, can be used as a link too:

New Fieldset view:

New Column Count behavior for Radios, Checkboxes and Dropdowns to control in how many columns the options are shown:

New Labeled option for Radios to show labels only without showing the regular radio button, useful for creating selectable options:

New List Search behavior for text fields and dropdowns to search data lists:

New List Filter behavior for dropdowns to filter data lists:

Fixed a bug in Selected Values in multi selection fields:

New AJAX page call and Submit form actions for events listeners:

Set the Read Data name as the primary source of info for the Table view so that it can copy the page settings from the Read Data directly:

Added new Read Data read type to read all records and their count, also added new Order Rules behavior:

Better v6, v7 forms import, more elements will be imported like Grids, Fieldsets,..etc
Comments: