In the select event handler, you can clear the Table's selection by calling the #setSelection method with no arguments, eg:
myTable.setSelection(); You should be able to get your jQuery event handlers to work, though (make sure you are using the $.live or $.on methods to create them, as the elements in the table will be destroyed and rebuilt every time the Table draws, the user changes the Table page, or the user sorts the Table [not applicable in your case], which would require recreating event handlers each time). On Saturday, June 21, 2014 3:15:20 PM UTC-4, rocits wrote: > > >>> If you go to >>> http://gcdc2013-supergoopal.appspot.com/static/supergoopal.html >>> >> > Click on the first *Icon* [*Input Menu*] at the top > then > *'Web'* > then >* 'jQuery' * > > You will get a visualization api table with a list of jQuery tests > > Each row has a [Edit] Icon and a [Drag..] Icon > > When you click on the [Edit] Icons it opens the rows relevant sample code > into a editor. > > *What I want to achieve is to have the [drag..] icons (the red hexagonal > icons ) drag to the 'designer demo'* > *I tried with the standard jQuery drag button and it didn't work, maybe > you cannot have dynamic drag but at least a click to add [emulating the > drag or animation etc..] should work.* > > *I'm using the row selection to trigger the first [edit] Icon , workaround > , but the entire row is still active for a row selection.* > > Hope that is clearer! Thanks > -- 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 http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/d/optout.
