IDEMPIERE-343 - zk6: Timeout message is not appearing

(transplanted from 135f97f11354e36df7a27c1825756d0d10600ee9)
This commit is contained in:
Hesham S. Ahmed 2012-07-20 03:23:39 +03:00
parent 3c129bf182
commit 5153f0c11c
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@
<toolbarbutton href="/index.zul" label="${continueText}"/> <toolbarbutton href="/index.zul" label="${continueText}"/>
</div> </div>
</vbox> </vbox>
<script> <script defer="true">
<![CDATA[ <![CDATA[
var callback = function(ok, val) { var callback = function(ok, val) {
if (ok && !!val) if (ok && !!val)
{ {
$e("${timeoutText.uuid}").innerHTML = val; document.getElementById("${timeoutText.uuid}").innerHTML = val;
} }
}; };