cancel
Showing results for 
Search instead for 
Did you mean: 

Loading Message

0 Kudos

Hi everyone,

How can i show up the message "Loading...Wait a minute!" while my page is loading using HTMLB?

Thank you in advance,

Alex

Accepted Solutions (1)

Accepted Solutions (1)

former_member416498
Active Participant
0 Kudos

Hi Alex

You can use this xhtmlb tag. <xhtmlb:protectDoubleSubmit>.

This will serve you 2 purposes.

1. Displays a small popup window that shows that the request is being processed(The text you give). The popup window disappears as soon as a response is received.

2. Prevents user from triggering a new event until the first event has been processed on the server and a response has been sent to the browser.

Hope this information would be useful for you.

0 Kudos

Musti,

I sat it up, but it does not work properly.

Between which Tag i should set "<xhtmlb:protectDoubleSubmit>. "?

Points were rewards.

Alexandre

former_member416498
Active Participant
0 Kudos

Hi Alex

You can use it after the Form tag. Please see the sample below.

<htmlb:form id="Form1" >

<xhtmlb:protectDoubleSubmit active = "TRUE"

design = "POPUP"

text = "Please Wait"

title = "Page loading." />

//You rest of the <htmlb:...> tags.

</htmlb:form>

Answers (1)

Answers (1)

athavanraja
Active Contributor
0 Kudos

check out the loading.htm in htmlb_samples bsp app. you need to create a similar page in your app and use that for showing the loading image before the actual page is loaded.

flow

link calles loading.htm with the page to be called as url parameter and loading.htm redirects to the actual page

Raja