In the sap example page htmlb_samples/default.htm and then the chart example. When the user is waiting for the page, a loading_ani.gif is shown in the background of the page. How can I use this option?
Regards,
Jens
I actually just added that graphic into a new BSP application not more than 30 seconds before I read this.
I use it with the the session.htm page after setting up the whole SSO for my application.
Here is how I extended the protectDoubleSubmit element to show this loading_ani.gif:
<%
tmp_string = ``.
pds_title = `Bitte warten...`.
pds_text = `<div style='background-color:#ffffff; padding-top:11px'><img id='PDS_image' src=common/loading/loading_ani.gif' height='32' width='32' align='absmiddle'> Ihre Anfrage wird bearbeitet</div>`.
%>
<bsp:findAndReplace find="<br>" replace="<%= tmp_string %>"> <xhtmlb:protectDoubleSubmit timer = "0" title = "<%= pds_title %>" text = "<%= pds_text %>" /> </bsp:findAndReplace>
Add a comment