I have a requirement where i have to upload a video from a page and show the
upload progress when the upload is 100% complete need to update the progress
label as processing video.

I decided to go with a simple outer <div> and internal <div> while update
the internal <div> percentage to show the progress. Finally i added a Label
inside the internal <div> to show the status...

/<div style="border: 1px solid #5d4617; padding: 3px; background-color:
#191B10;" >
                <div style="width:400px; background-color: #555555; color:
white; font-size: 8px;" align="left">
                    <div style="width:0%; background-color: #FF9900;"
align="right" wicket:id="customProgress">Loading...</div>
                </div>
            </div>/


Finally i added AjaxSelfUpdatingTimerBehavior to the internal <div> to fetch
the progress and label every 2 seconds.

When i click on submit button.. the label is not update while the form is
being submitted. it shows the final progress i.e. 100% and processing
completed after file is uploaded.

I am using AjaxButton to upload on Ajax.

Any idea how i can achieve this?

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Label-not-updating-on-AJaxButton-submit-tp4298302p4298302.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to