is there a way to render the marker on google map component invisible using js?
Posted: Fri Jun 07, 2013 10:48 am
I tried with:
Appery('user_marker').attr('rendered', false);
but with no luck.
thanks
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I tried with:
Appery('user_marker').attr('rendered', false);
but with no luck.
thanks
Yes you can, if you find the list's name that is produced automatically to keep the marker the code below renders it invisible.
setAttribute_('j_74', 'showLocationMarker', 'false');
$('[id=j_74]').refresh();
well chaffed about it it bugged me for ages. So this is the answer if anyone was looking for it
Thank you for sharing Dimitris!