@@ -26,8 +26,8 @@ const char* radio_opts[] = {"Option1", "Option2", "Option3"};
26
26
EmbAJAXRadioGroup<3 > radio (" radio" , radio_opts);
27
27
EmbAJAXMutableSpan radio_d (" radio_d" );
28
28
29
- EmbAJAXOptionSelect<3 > select ( " select " , radio_opts);
30
- EmbAJAXMutableSpan select_d ( " select_d " );
29
+ EmbAJAXOptionSelect<3 > optionselect ( " optionselect " , radio_opts);
30
+ EmbAJAXMutableSpan optionselect_d ( " optionselect_d " );
31
31
32
32
EmbAJAXSlider slider (" slider" , 0 , 1000 , 500 );
33
33
EmbAJAXMutableSpan slider_d (" slider_d" );
@@ -71,9 +71,9 @@ MAKE_EmbAJAXPage(page, "EmbAJAX example - Inputs", "",
71
71
&radio_d,
72
72
&nextRow,
73
73
74
- &select ,
74
+ &optionselect ,
75
75
&nextCell,
76
- &select_d ,
76
+ &optionselect_d ,
77
77
&nextRow,
78
78
79
79
&slider,
@@ -142,7 +142,7 @@ void updateUI() {
142
142
// placing it here makes the client UI more responsive (try it).
143
143
check_d.setValue (check.isChecked () ? " checked" : " not checked" );
144
144
radio_d.setValue (radio_opts[radio.selectedOption ()]);
145
- select_d .setValue (radio_opts[select .selectedOption ()]);
145
+ optionselect_d .setValue (radio_opts[optionselect .selectedOption ()]);
146
146
slider_d.setValue (itoa (slider.intValue (), slider_d_buf, 10 ));
147
147
color_d.setValue (strncpy (color_d_buf, color.value (), BUFLEN)); // r, g, b, are also available, numerically.
148
148
text_d.setValue (strncpy (text_d_buf, text.value (), BUFLEN));
0 commit comments