Re: AJAX update and file download on Wicket 1.5

2014-06-13 Thread malebu
You can always redirect to an error page incase of exceptions / errors. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AJAX-update-and-file-download-on-Wicket-1-5-tp4095241p4666261.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: AJAX update and file download on Wicket 1.5

2013-03-31 Thread malebu
So I modified my AjaxFileDownload init method to eliminate the abstraction of getResourceStream. Code as follows: AjaxFileDownload.java... Similar to AJAXDownload described in the Wiki except for the following mod

Re: Label not updating on AJaxButton submit

2012-01-16 Thread malebu
server side and with > AjaxChannels with different names at the client side you will solve > both problems. > > On Mon, Jan 16, 2012 at 2:51 AM, malebu <milton.quranda@> wrote: >> I have a requirement where i have to upload a video from a page and show >> the >> up

Label not updating on AJaxButton submit

2012-01-15 Thread malebu
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 and internal while update the internal percentage to show the progress. Finall

Re: Can I modify the style of an option tag?

2012-01-15 Thread malebu
Refer http://wicket.apache.org/apidocs/1.4/org/apache/wicket/extensions/markup/html/form/select/Select.html then add the following code: option.add(AttributeModifier.replace("style","background-image: url(/images/icons/bug.gif)")); thats should do the trick -Milton -- View this message in cont

Re: Wicket spring security sample app

2012-01-15 Thread malebu
Here is how i did it... *created a spring-config application-security.xml* /" "/ *in web.xml add the following lines:* / springSecurityFilterChain org.springframework.web.filter.DelegatingFilterProxy

Re: Create Datatable with empty columns and rows

2011-05-15 Thread malebu
GridView seems more logical. I will give it a try but what about the vertical line between grids! ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Create-Datatable-with-empty-columns-and-rows-tp3523546p3524463.html Sent from the Users forum mailing list archive at Nab

Create Datatable with empty columns and rows

2011-05-14 Thread malebu
http://apache-wicket.1842946.n4.nabble.com/file/n3523546/Screen_shot_2011-05-14_at_9.55.31_PM.png I need to create a table like the attached image. I am not seasoned in wicket. I am not able to analyze where to start. I was able to create a DataTable but could not figure out how to get it starte