Forum Discussion
- _anomDiebolt_Qrew ElitePost your code.
- LienGilhooleyQrew Cadetif (/a=nwr/i.test(querystring)) {
$("#_fid_43").attr("readonly", "true");
$("#_fid_27").on("change", function() {
switch($(this).val()) {
blah, blah, blah
fid_27 is currently a multi-choice text field. On the form, if I select the option to display this field as radio buttons, the OnChange event never fires. I've also tried the OnClick event and that does not work either. - _anomDiebolt_Qrew EliteWith the field displayed as options this code works:
$("#_fid_6")
With the field displayed as radio buttons this code works:
.on("change", function() {
console.log(this.value)
});$("input[type=radio][name=radio_fid_6]")
I should note that the HTML QuickBase spits out for the radio buttons is malformed and produces this message in the console:
.on("change", function() {
console.log(this.value);
});