Re: FireFox 3.x.x issue with wicket

2008-10-22 Thread swapnil.wadagave
Thanks For Reply, But Actually half text is not gets submitted.Only pbm is with view.same is working fine with IE and mozila backward version like mozila 2.x.x..So where can i get help for this kind of issues. Regards, swapnil swapnil.wadagave wrote: Respected sir, When I am writing

FireFox 3.x.x issue with wicket

2008-10-21 Thread swapnil.wadagave
Respected sir, When I am writing in the search boxes I only see half of the text. This happens with FireFox 3.x.x What can i do in this case?This is happening in some pcs. -- View this message in context: http://www.nabble.com/FireFox-3.x.x-issue-with-wicket-tp20104033p20104033.html Sent

Display Html page Using Popup

2008-09-01 Thread swapnil.wadagave
Hi , I am preparing online help for my apps.So i want provide a link for every page one popup will occur and in that popup he can bale to view respective html/doc file. but here pbms for me are where should i kept those help files and how do i refer them using wickets. I am refering this link

Migrating code from 1.2 to 1.3

2008-09-01 Thread swapnil.wadagave
Hi i have code of wickets 1.2 the code snippnet is specified below, ((WebApplication) Application.get()) .getWicketServlet().getServletName() I want to migrate this into 1.3.How i can get same thing with 1.3? Thanks and Regards, swapnil -- View this message in context:

Re: Migrating code from 1.2 to 1.3

2008-09-01 Thread swapnil.wadagave
Thanks For Reply, As you said i will go with, but just take a look with this code snippnet, String servletName = ((WebApplication) Application.get()).getWicketServlet().getServletName(); StringBuffer buf = new StringBuffer(); buf.append('/').append(servletName

Re: Footer Toolbar for DefaultDataTable (wicket 1.3.2)

2008-08-12 Thread swapnil.wadagave
hi Sanjeev, I think you can able to do it using this code, extend parent class as DataTable,dont use DefaultDataTable : code: DatatTable datatable=new DataTable(entries,column,provider,3) { protected Item newRowItem(String id,int index,IModel model) { return new OddEvenItem(id,indexmmodel); }};