This is my code:
<b:button>
Send!
<e:handler id="btnSend" event="click" type="application/xml">
<e:variable name="start" select="javascript:bb.getProperty(bb.document.getElementById('start'),'value')" />
<e:variable name="end" select="javascript:bb.getProperty(bb.document.getElementById('end'),'value')" />
<c:load url="test.asp" method="POST" data="{concat('start=',$start,'&end=',$end)}" destination="id('result')" mode="replaceChildren" />
</e:handler>
</b:button>
<div id="result"></div>
Send!
<e:handler id="btnSend" event="click" type="application/xml">
<e:variable name="start" select="javascript:bb.getProperty(bb.document.getElementById('start'),'value')" />
<e:variable name="end" select="javascript:bb.getProperty(bb.document.getElementById('end'),'value')" />
<c:load url="test.asp" method="POST" data="{concat('start=',$start,'&end=',$end)}" destination="id('result')" mode="replaceChildren" />
</e:handler>
</b:button>
<div id="result"></div>
When im not using backbase, test.asp takes about 50seconds to load.
But backbase, doesnt load it. It seems for me, its timeout problem.
How to set timeout?
Should the code bellow work?
<s:task b:action="trigger" b:event="loadtimeout" b:delay="15000" b:async="true" />
