was ist mit disabled und readonly los?

master
Klaus Wendel 5 months ago
parent fb18a49836
commit f28800d3e3

@ -158,12 +158,12 @@ func GetStatusFromBulkOfIds(dombase js.Value, ids []string) (result []struct {
checked, disabled, readonly bool
value string
}{
id: id,
name: tmpObject.Get("name").String(),
checked: tmpObject.Get("checked").Bool(),
disabled: tmpObject.Get("disabled").Bool(),
readonly: tmpObject.Get("readonly").Bool(),
value: tmpObject.Get("value").String()})
id: id,
name: tmpObject.Get("name").String(),
checked: tmpObject.Get("checked").Bool(),
//disabled: tmpObject.Get("disabled").Bool(),
//readonly: tmpObject.Get("readonly").Bool(),
value: tmpObject.Get("value").String()})
}
return

Loading…
Cancel
Save