Hi All,
I am using licensed version of SmartGWT PRO 4.1 (isc.version="v9.1p_2014-06-14/Pro Deployment";isc.versionNumber="v9.1p_2014-06-14";isc.buildDate="2014-06-14")
Please note that we are in process to upgrade to the latest version but my question is for above version only.
I wanted to add one of my custom div to an existing Canvas. I am doing it using below code snippet,
What is happening in my case is, if i am adding that as Member than it is consuming space which i do not want. If I add it as Child, than it is giving weird behavior.
Any suggestion how can i add it as Member without actual UI getting affected ?
I am using licensed version of SmartGWT PRO 4.1 (isc.version="v9.1p_2014-06-14/Pro Deployment";isc.versionNumber="v9.1p_2014-06-14";isc.buildDate="2014-06-14")
Please note that we are in process to upgrade to the latest version but my question is for above version only.
I wanted to add one of my custom div to an existing Canvas. I am doing it using below code snippet,
Code:
addMember(new Canvas() { @Override public String getInnerHTML() { return "<div id=UNIQUE_DIV_ID style=\"position:absolute; width:0; height:0; z-index:-999; display: none; overflow:hidden\"/>"; } });
Any suggestion how can i add it as Member without actual UI getting affected ?
Comment