Re: pivot table in wicket

2012-05-16 Thread Robert Kimotho
Why don't you try using jpivot, the front end is done using html and they have css that you can override to suit your needs. This also makes it easy to embed in your wicket pages. Not unless you want to write one from scratch, which I think will be very time consuming. PS: jpivot uses mdx to query

Re: Captcha regeneration

2010-06-09 Thread Robert Kimotho
Here is some code that I think will help remove(image); imagePass = randomString(6, 8); captchaImageResource = new CaptchaImageResource(imagePass); image = new Image("captchaImage", captchaImageResource

Re: Just launched - www.onmydoorstep.com.au

2010-05-18 Thread Robert Kimotho
Very well done, but you can do something about the home page banner like making the images fade into each other better. Regards, Kimotho On Wed, May 19, 2010 at 2:14 AM, Zilvinas Vilutis wrote: > Actually you CAN test it locally, just you need to configure that you need > this feature in your F

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-05-04 Thread Robert Kimotho
k at IResourceListener) before displainng image in label, > multilinelabel, etc. > > > W dniu 2010-05-03 09:10, Robert Kimotho pisze: > > When I submit a form with an emoticon from the fullfeatured tinymce, the >> image doesn't get displayed in the destination >> only t

Re: Image Upload Using TinyMCE Within Wicket Framework

2010-05-03 Thread Robert Kimotho
When I submit a form with an emoticon from the fullfeatured tinymce, the image doesn't get displayed in the destination only the text. any suggestions, I've been stuck here for a while now. 2010/5/1 新希望软件 -- 俞宏伟 > image upload example run failuer, the application > throwsNoClassDefFoundError

Re: Big Problem with TinyMCE

2010-05-03 Thread Robert Kimotho
On your AjaxButton add TinyMceAjaxSubmitModifier. Kimotho. On Fri, Apr 30, 2010 at 12:53 AM, Brad Grier wrote: > I'm trying to use a TinyMCE editor on a form (itself belonging to a panel > added to a page via Ajax). The form is submitted via an AjaxButton. From > other posts here and elsewhere I

Re: DataView disappearing after AJAX update

2010-04-30 Thread Robert Kimotho
gt; > > > > > > >Category: wicket:id="category"> > > > > > >

Assistance required on WebSessions

2010-04-29 Thread Robert Kimotho
Hi guys, I have a method getAllUsers(); that must be called when the session initializes and destroyed (i.e. call clear(); ) when the the user logs out OR the session expires, I need assistance on where to place the two methods ( getAllUsers() and clear() ) in the wicket application, the methods

Re: DataView disappearing after AJAX update

2010-04-29 Thread Robert Kimotho
I have experienced the same issue, the only difference is that when there was no data in the database the dropdown crashed and could not display any values, I'm also using AjaxFormComponentUpdatingBehavior onchange Here is a section of my code:- final WebMarkupContainer commentListContainer = new

Re: DataView disappearing after AJAX update

2010-04-29 Thread Robert Kimotho
I have experienced the same issue, the only difference is that when there was no data in the database the dropdown crashed and could not display any values, I'm also using AjaxFormComponentUpdatingBehavior onchange Still trying to find a solution. Kimotho. On Thu, Apr 29, 2010 at 12:21 PM, Reinou

Re: Shadow text on input fields

2010-04-27 Thread Robert Kimotho
have you tried:- Kimotho, On 4/26/10, Stefan Jozsa wrote: > CSS: > .inputHint { > color: #66; > } > > Java: > add(new AttributeModifier("value", true, new AbstractReadOnlyModel() > { > @Override > public String getObject() { > return "yourHintText"; >

Re: Form submit with tinymce

2010-04-26 Thread Robert Kimotho
content behind the text containing the emoticon when you > submit? Is the emoticon represented as just a :) for example? If so you'll > need to parse the output and render as the images. A graphical editor is > just a fancy wrapper around text. > > cheers, > Steve > > &

Form submit with tinymce

2010-04-26 Thread Robert Kimotho
Hello guys, I'm trying to submit a form (including tinymce content and an emoticon). The problem I'm having is that the emoticon does not get displayed at the destination only some text. does anyone know what to do. Thanks. -

Re: DropDownList

2010-04-14 Thread Robert Kimotho
Override getDefaultChoice() as in the following code:- @Override protected CharSequence getDefaultChoice(Object selected) { return "your header"; } On Wed, Apr 14, 2010 at 3:00 PM, Josh Kamau wrote: > Hi team; > > Please tell me , how do i

Ajaxfallbackbutton and uploadprogressbar

2010-04-13 Thread Robert Kimotho
Hi, I'm using an uploadprogressbar in a form that is being submitted using ajaxfallbackbutton, the following is the code, final Form images = new Form("images_form"); images.setMaxSize(Bytes.megabytes(7)); final UploadProgressBar progress = new Uploa