Answered
Hi All,
I have one textfield and one radio button.
if i type for example in textfield 100 the radio button should be marked if it's not 100 then it should be not marked.
I use this code in java scripts in change when i click on textfield, but it doesnt work. can anyone help me??
if (textField.rawValue = 100) {
radiobutton.rawValue = 1;
} else {
radiobutton.rawValue = 0;
}
Thank you in advance!!
Diana
and it should be == 100 not = 100