Change properties of multiple fields simultaneously

Let’s say I have a form with 10 checkbox and I want to change a property of all of these checkboxes to a same value. Now I have to edit all those checkboxes one by one and change this value.

Is it possible to do this by selecting the 10 checkboxes and apply the value for all by doing it ONE time?

I have recently done something similar

you have to create some javascript for the form.

and also another checkbox or button to check all. the values will be the value of the check box

function handler1() {
$(“form input[type=‘checkbox’]”).attr ( “checked” , true );
$(this).one(“click”, handler2);
for (i = 1; i < +trows; i++) {
nm_check_insert(i);do_ajax_form_ppb_approval_event_checkbox__onclick(i);
}
}

function handler2() {

$("form input[type='checkbox']").attr ( "checked" , false );
$(this).one("click", handler1);
location.reload(true);

}
$("#hidden_field_label_checkbox_").one(“click”, handler1);

my code may help you but i use it on a form rows.

Nice! Your code is when the form is already made and working. Will Use this for sure.

But not really my question. I meant when developing a from i want to the same property to all those checkboxes. For example set lookup with a label ‘YES’ in case of value 1 and ‘NO’ in case the value is 0.

I think you create one manual lookup method then save it as public, then use it for other checkboxes as [SIZE=12px]Load lookup definitions[/SIZE]

That’s the way i use it right now. But I have to access all those fields one by one.

I have other things to group. Just some examples Like setting the numbers of characters of some fields in a form, disable ‘display date format’ in various datefields, …

Editing these fields take a lot of time. Maybe a suggestion for Netmake. Let us select some fields in the left column and apply properties for the selected fields.