私はeglリッチUIを使用しています。ハンドラーがあり、これに iframe を追加しようとしています。コード例を見つけましたが、これは機能しません。次のコードで何が問題になっていますか?
handler Test type RUIhandler{initialUI =[ui], onConstructionFunction = start, cssFile = "css/test.css", title = "Test"}
ui Div{padding = 10, children =[Box, BoxDataGrid, iframe]};
iframe Widget{tagName = "iframe", width = "500", height="100"};
function start()
iframe.setAttribute("src", "http://www.google.gr");
end
end