I am trying to get this code to work on a category filter:
google.visualization.events.addListener(personPicker, 'ready',
function(){
//alert('modify personPicker visibility');
var categoryValues = personPicker.getOption('values');
alert(categoryValues);
//categoryValues is always null ???
if (categoryValues){
numpersons = categoryValues.length();
}else{
numpersons = 1;
}
alert('numpersons='+numpersons);
if(numpersons>1){
$('div#personfilter').css('display','inline-block');
$('div#personfilter').css('visibility','visible');
}else{
$('div#personfilter').css('display','none');
$('div#personfilter').css('visibility','hidden');
}
});
How/When can I get the number of items in the category filter?
Thanks?
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-visualization-api/-/mQT3SbF99-UJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en.