Inmethod Grid Select All or Reload Grid

2011-04-17 Thread GJT
Hi there I started using the Inmethod DataGrid because I need resizable tables and I need to be able to select multi entries. First, I had the problem that I couldn't select all entries and the multi select didin't work properly. In this forum I found out that I have to implement hashCode in the

Re: Dynamically injecting CSS on panel swap

2011-04-17 Thread Pedro Santos
Sounds like a bug. The expected behavior is to have the selected panel CSS dynamically injected. Please send us a quickstart reproducing the problem. On Mon, Apr 18, 2011 at 12:00 AM, Alec Swan wrote: > Hello, > > I have a page with multiple tabs which I implemented using AJAX-based > panel-swap

Dynamically injecting CSS on panel swap

2011-04-17 Thread Alec Swan
Hello, I have a page with multiple tabs which I implemented using AJAX-based panel-swapping approach. The CSS files are injected in the constructor of each panel using add(CSSPackageResource.getHeaderContribution(resourceRef, media)). This works for the first tab rendered. However, when another ta

Re: test pages with selenuim

2011-04-17 Thread Per Newgro
Am 17.04.2011 19:54, schrieb shetc: I use WicketTester on its own now. Will it help me to also use Selenium to test Wicket as well? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/test-pages-with-selenuim-tp3452652p3455847.html Sent from the Users forum mailing list

Re: test pages with selenuim

2011-04-17 Thread shetc
I use WicketTester on its own now. Will it help me to also use Selenium to test Wicket as well? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/test-pages-with-selenuim-tp3452652p3455847.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: test pages with selenuim

2011-04-17 Thread Per Newgro
Am 16.04.2011 22:11, schrieb shetc: What is advantage of Wicket Page Test over WicketTester? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/test-pages-with-selenuim-tp3452652p3454541.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: wicketopia or other form generator

2011-04-17 Thread James Carman
Good question! I'm definitely still working on the documentation, but the example application does show you how to use the framework. The documentation will show you how to use the framework in a custom fashion On Apr 17, 2011 12:39 PM, "Marcus Breier" wrote: > Dear all, > > I am a novice using

wicketopia or other form generator

2011-04-17 Thread Marcus Breier
Dear all, I am a novice using this nice web framework. Recently I noticed the announcement of the new version of wicketopia RAD framework. Is there a tutorial somewhere out there how to use wicketopia properly in a production environment? For background of my question: I am searching for a soluti

Re: Mixing static with dynamic items in the same list

2011-04-17 Thread Clint Checketts
First of all, avoid using a label to generate html. Put the repeater on the LI element and add a link. Looks like you want an ExternalLink. HTML -- > > --- > > >First static item > > >Second static item >

Mixing static with dynamic items in the same list

2011-04-17 Thread Alexandros Karypidis
Hello, I have a page with a simple HTML unordered list (), where part of the list items are static, whereas the rest of them are dynamic. To that end, I've injected a tag at the end of the static items, adding a ListView in order to fill in the "dynamic" part, as follows: HTML --

Re: Refreshing loadable detachable model object inside an ajax call

2011-04-17 Thread Clint Checketts
The 'implicit super constructor' warning means that in your constructor you need to call 'super()' The 'complains on type T' part I'd need a little more info. Feel free to post the exact lines of code. -Clint On Sat, Apr 16, 2011 at 2:21 AM, lucast wrote: > However, when I try to extend the Ab