|
|
|
@ -158,10 +158,10 @@ 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(),
|
|
|
|
|
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()})
|
|
|
|
|
}
|
|
|
|
|