at http://webix.com/snippet/26a5ee4a there is an example of a datatable. When you click on a table entry a Google map window is opened, but the map is empty. When you resize the browser with the mouse the map appears. What’s going wrong? Thanks for your help
Hi, I can confirm the issue. The map is not rendered in the initially hidden window.
You can grab the fixed integration on GitHub GitHub - webix-hub/components: Third party integrations for the Webix UI or use a quick solution:
$$("myMapWindow").show();
if(!$$("myMap").isVisible())
$$("myMap").render();
http://webix.com/snippet/35c60d8c
The link to an integration file at cdn.webix.io will be updated today as well.
@Helga, a lot of thanks, Rainer
Please keep the following Google notice in mind:
SensorNotRequired Warning
The sensor parameter is no longer required for the Google Maps JavaScript API. It won’t prevent the Google Maps JavaScript API from working correctly, but we recommend that you remove the sensor parameter from the script element.
Updated. Thank you.
Just now it works perfect http://webix.com/snippet/0083e918