hi,
i tried your module but i didn´t got any output from jquery. to debug the code i copied the html table and the js into a single html page. I deleted Drupal.settings. in front of jqueryVisualize to work with normal js variables. After adding a var jqueryVisualize = Array(); before the code i got a graph output.
not working
<script type="text/javascript">
$(function(){
jqueryVisualize['xxx_all-page_1'] = { "type": "pie", ...};
$(".xxx_all-page_1-graph").visualize(jqueryVisualize['xxx_all-page_1']);
});
</script>
working
<script type="text/javascript">
$(function(){
var jqueryVisualize = Array();
jqueryVisualize['xxx_all-page_1'] = { "type": "pie", ...};
$(".xxx_all-page_1-graph").visualize(jqueryVisualize['xxx_all-page_1']);
});
</script>
did i something wrong with config, or is this a bug?
regards,
dominik
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | Bild 1.png | 20.72 KB | nodestroy |
Comments
Comment #1
javi-er commentedare you using it with a view or standalone? take a look to the documentation here http://drupal.org/node/541370
If you can, please post the view or the code that you are using.
Thanks,
Javier
Comment #2
nodestroy commentedthanks for your replay,
i am using it together with views, here is the views export code:
attached what the output looks like
regards,
dominik
Comment #3
gantenx commentedI experienced same problem. I solved this problem after changing javascript files (visualize.jQuery.js) permission to 644 and clear my browser's cache.
I think the visualize.jQuery.js file in visualize module package has 600 file permission. When the package extracted, the visualize.jQuery.js file permission is leave as it is in the package. Since I always extracts modules manually using non-www user, access to visualize.jQuery.js file will be forbidden.
Comment #4
nodestroy commentedMine had 000 perms, with 644 all works fine.
My mistake ;)