How to access gwt properties: properties from code?
1 answer
Not sure if you can get this particular meta directly, but with the following GWT code you can get the content:
final NodeList<Element> metas = Document.get().getElementsByTagName("meta"); for (int i = 0; i < metas.getLength(); i++) { final MetaElement m = MetaElement.as(metas.getItem(i)); if ("gwt:property".equals(m.getName())) { //do something with content: m.getContent(); } } +5