I've got a google apps script page I've been putting together, and I'm using a chartwrapper for a table visualization.
In my table visualization, I can, of course, put html. I have a sheet where I've calculated how many radio buttons I need and built lines for them, something like this: <input type="radio" name="96" value="1" checked="checked"><input > type="radio" name="96" value="2"><input type="radio" name="96" > value="3"><input type="radio" name="96" value="4"><input type="radio" > name="96" value="5"> > <input type="radio" name="97" value="1" checked="checked"><input > type="radio" name="97" value="2"><input type="radio" name="97" value="3"> > <input type="radio" name="98" value="1" checked="checked"><input > type="radio" name="98" value="2"><input type="radio" name="98" > value="3"><input type="radio" name="98" value="4"> > And that displays perfectly in my table. The problem is figuring out how to get information back from those radio buttons. I can't do a "getValue" on the cell because it's still just equal to the original html. And I can't seem to respond to onclick events for them because they're inside the table, and the table's events are the only things that can be detected. (If I build the same radio buttons outside the table, I can get the info just fine) What other options do I have here to get that same kind of functionality? -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-visualization-api. To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/3a04c369-fd83-4d08-8139-24285e219453%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
