[Wicket-user] new user

2005-11-30 Thread Frank Silbermann
I have some Java application development experience, but my web development experience is very small (mainly just a few simple servlets). At my new job I am tasked with translating an architecturally simple ASP.NET application to J2EE (the company wants to standardize on Java). Im working

RE: [Wicket-user] new user

2005-12-01 Thread Frank Silbermann
(with respect to my project of translating a simple ASP.NET application to J2EE) Eelco: Sure. Wicket is a good choice. ...You might want to check out Tapestry and JSF too. Of these JSF is the closest to ASP.NET, and Wicket will attract most to people that are code oriented and want to have

[Wicket-user] Upgrading when 1.2 is released

2006-01-09 Thread Frank Silbermann
When Wicket 1.2 is released, how much work is likely to be required to upgrade a project written for Wicket 1.1? /Frank Silbermann --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download

RE: [Wicket-user] How can I separate the java and html?

2006-01-17 Thread Frank Silbermann
I am curious as to the reason Wicket was not designed to make the HTML filename an attribute of the page object -- analogous to the way we tie Wicket page components to HTML components -- rather than requiring the page class name to equal the HTML filename. It seems reasonable to want to use the

[Wicket-user] Question about examples

2006-01-19 Thread Frank Silbermann
I'm looking at the Component Reference (compref) examples in the Wicket Library: http://www.wicket-library.com/wicket-examples/compref?path=6 Clicking on one of the components, I see some text that typically ends with: Further examples and comments/explanations may be available in the source

[Wicket-user] RowSets

2006-01-20 Thread Frank Silbermann
Im just beginning to go through the examples, beginning with the component references, and began to wonder: Does wicket provide a component designed to make it easy to display arbitrary database result sets or row sets? I.e., a component that displays an arbitrary number of rows and

RE: [Wicket-user] RowSets

2006-01-23 Thread Frank Silbermann
In my browser Ive tried irc.freenode.net and www.irc.freenode.net and http://irc.freenode.net and all I get are 404 PAGE NOT FOUND messages. What exactly do you mean by irc.freenode.net? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor

[Wicket-user] Wicket Library down?

2006-01-23 Thread Frank Silbermann
What's happened to the Wicket Library? (http://www.wicket-library.com/) It seems to be down. --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes

[Wicket-user] ListView tutorial?

2006-01-23 Thread Frank Silbermann
Has anyone written about the way ListView works in Wicket -- i.e. the roles played by ListView, ListItem and the models belonging to these components? I've looked at the JavaDoc in the hope of gaining some intuition as to what is going on, but I'm having a difficult time seeing the forest because

RE: [Wicket-user] ListView tutorial?

2006-01-23 Thread Frank Silbermann
immediate children with own markup does this help or confuse you more? -Igor On 1/23/06, Frank Silbermann [EMAIL PROTECTED] wrote: Has anyone written about the way ListView works in Wicket -- i.e. the roles played by ListView, ListItem and the models belonging to these components? I've looked

[Wicket-user] Creating a PropertyModel using a non-IModel POJO

2006-01-24 Thread Frank Silbermann
The JavaDoc for the PropertyModel constructor says that its parameters are an IModel and an OGNL string, but I noticed that the code accepts any java.lang.Object as the first parameter. I discovered this when trying to sort out my confusion when the linkomatic example created a

RE: [Wicket-user] Creating a PropertyModel using a non-IModel POJO

2006-01-25 Thread Frank Silbermann
to reimplement this piece of code. If you really require full OGNL support, you could create your own OgnlPropertyModel which uses the OGNL jar. Juergen On 1/25/06, Frank Silbermann [EMAIL PROTECTED] wrote: The JavaDoc for the PropertyModel constructor says that its parameters are an IModel

[Wicket-user] wicket library abused

2006-01-26 Thread Frank Silbermann
It looks as though someone is determined to make us require membership to edit the Wicket Wiki. Someone just entered a bunch of spam at the top of the Wiki homepage. --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log

[Wicket-user] Using Frames in Wicket

2006-02-01 Thread Frank Silbermann
Is there any advice about creating frame-based web-applications in Wicket? Does it make sense to have a Wicket Page object whose class name maps to an HTML file that creates a frameset? If so, what would be its relation to the Wicket Page objects each of which maps to a single frame? Or would

RE: [Wicket-user] newbie model update question

2006-02-01 Thread Frank Silbermann
and the application-scoped variable has the same value as before. Where in page 1 should I put the code to check the application-scope data for changes and perhaps update the model data? What Wicket Page method should I override? /Frank Silbermann

RE: [Wicket-user] newbie model update question

2006-02-01 Thread Frank Silbermann
the URL is bookmarkable, but whether the request being refreshed contained a session-id somewhere within it. Am I right? Frank Silbermann -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Vaynberg Sent: Wednesday, February 01, 2006 1:56 PM To: wicket

[Wicket-user] Rendering DataTable or DataView (or model) as Excel sheet

2006-02-01 Thread Frank Silbermann
of strings (or list of lists, or whatever). What is the simplest solution? /Frank Silbermann --- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching

RE: [Wicket-user] newbie model update question

2006-02-01 Thread Frank Silbermann
OK, suppose I _don't_ care about saving the model. I store it in the Page and this time I want to re-create it from scratch (and reset components to their defaults) every time the user re-enters the page. Do I have to make my back-links bookmarkable, even though I don't really care whether

RE: [Wicket-user] Rendering DataTable or DataView (or model) as Excel sheet

2006-02-01 Thread Frank Silbermann
, Frank Silbermann [EMAIL PROTECTED] wrote: ASP.NET has an easy way to return a DataGrid as a Microsoft Excel file: Dim stringwriter As New System.IO.StringWriter() Dim htmlwriter As New System.Web.UI.HtmlTextWriter(stringwriter) DataGrid1.RenderControl(htmlwriter) Response.AppendHeader(content

RE: [Wicket-user] Rendering DataTable or DataView (or model) as Excel sheet

2006-02-01 Thread Frank Silbermann
, 2006 4:13 PM from reading the above code all you are doing is rendering the grid into the response by itself with the additional header? but it is still in its unchanged html format? On 2/1/06, Frank Silbermann [EMAIL PROTECTED] wrote: ASP.NET has an easy way to return a DataGrid

[Wicket-user] need pointer for info

2006-02-06 Thread Frank Silbermann
How do I build a set of radio buttons that automatically post back when the selection is changed? Is there an example anywhere on one of the Wicket sights someone can point me to? /Frank Silbermann

[Wicket-user] reflection question

2006-02-07 Thread Frank Silbermann
I'm looking at the DataView and DataTable of Wicket Extensions. To provide columnheader links that cause sorting, we must implement a subclass of SortableDataProvider. To implement a SortableDataProvider it would be really nice to have an operation that takes in two arbitrary objects and a

RE: [Wicket-user] reflection question

2006-02-08 Thread Frank Silbermann
-user] reflection question not really sure what you are trying to achieve with all that below. also you dont need to extend SortableDataProvider, you can use any dataprovider that implements ISortStateLocator. -Igor On 2/7/06, Frank Silbermann [EMAIL PROTECTED] wrote: I'm looking

[Wicket-user] stability of Repeaters refactoring in Wicket 1.2 Extensions

2006-02-08 Thread Frank Silbermann
The Repeaters classes (e.g. DataTable) in Wicket Extensions have been significantly refactored in Wicket 1.2 for more flexibility. Since Wicket 1.2 has not been released as a stable version, these refactorings are subject to change, but how likely is that? Is this refactoring still a

[Wicket-user] Non-paging DataTable ???

2006-02-08 Thread Frank Silbermann
DataTable does not appear to have a setting to display all rows, regardless how many. If thats what I want, would I simply set the number of rows each time to the number of rows in my DataProvider (or to a ridiculously large number) and omit the NavigationHeader? By the way, I have

RE: [Wicket-user] Wicket 1.2 ?

2006-02-08 Thread Frank Silbermann
., if it's not explained well, I won't understand it.) Frank Silbermann -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eelco Hillenius Sent: Wednesday, February 08, 2006 3:39 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Wicket 1.2

[Wicket-user] Scope of application object

2006-02-09 Thread Frank Silbermann
Others have asked about sharing information between pages, and the answer has been to pass the shared information via page constructors. Since no one suggested using the WebApplication object, does that imply that this is a singleton shared by all clients? It has been said that it is

[Wicket-user] Documentation for DatePicker in Wicket Extensions?

2006-02-09 Thread Frank Silbermann
The JavaDoc for the DatePicker component mostly just restates the names of the methods and properties. Perhaps these names make more sense to someone who has worked with _javascript_ date-pickers before, but I havent. Are there any sources for learning how to use the capabilities of

[Wicket-user] recommend HTML editor for Wicket user

2006-02-14 Thread Frank Silbermann
I am not only new to Wicket; I am also new to web programming. I can read HTML, but Im not fluent in writing it. Any suggestions for a free HTML editor that is appropriate for Wicket users? I presume it should be text-centric rather than a WYSIWYG editor, because we need to keep

[Wicket-user] PropertyModel question

2006-02-15 Thread Frank Silbermann
In Wicket 1.2, if an object has a public variable named property but no getProperty() / setProperty() methods, can we use the string property in constructing a PropertyModel? It seems that we could do this in Wicket 1.1, which used OGNL -- as OGNL mentions using a variable name if the

RE: [Wicket-user] Component model question

2006-02-15 Thread Frank Silbermann
Obviously, I meant Compound Model and not ComponentModel /Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Silbermann Sent: Wednesday, February 15, 2006 2:16 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Component

RE: [Wicket-user] Component model question

2006-02-15 Thread Frank Silbermann
Are there any guidelines written up on building reusable components in Wicket? Other than that one typically uses a Panel? For example, Ive decided that I need a panel that contains a DatePicker attached to a textbox, with a descriptive label and a secondary label to print warnings when

[Wicket-user] DatePicker question with TextBox associated with input READONLY

2006-02-15 Thread Frank Silbermann
A DatePicker is typically attached to a TextBox. In the FormInput example, a validator is also attached to the TextBox in case the user bypasses the DatePicker and types in something stupid. Could I simply attach my TextBox to an input READONLY=true field, so that the DatePicker can set

[Wicket-user] pulling hair out

2006-02-16 Thread Frank Silbermann
Where can I get help with really stupid new-user problems? Ive added a tiny increment to a tiny application and I get an error message from the framework saying that it cannot initialize my (second) application: wicket.WicketRuntimeException: Unable to create application of class

[Wicket-user] Wicket:link question

2006-02-16 Thread Frank Silbermann
Ive seen that within a wicket:link tag we can write ordinary HTML links and have Wicket lings automatically generated. The Component Reference examples use it as follows: wicket:link ul lia href=PanelPage.htmlwicket.markup.html.panel.Panel/a/li lia

[Wicket-user] question on DatePicker in FormInput example

2006-02-17 Thread Frank Silbermann
In the FormInput example, we build a subclass of wicket.markup.html.form.Form to contain the date inputbox and DatePicker. For this input, the HTML inside the form is: label wicket:id=dateLabel for=datePropertyDate/label input wicket:id=dateProperty id=dateProperty type=text size=40/ span

[Wicket-user] Question about Panel in Form

2006-02-17 Thread Frank Silbermann
I've seen examples of putting widgets into a Form, but I've not seen one where a Panel is added to a Form. Suppose I have a collection of form widgets (text boxes, radio buttons, etc.) that I need to put in forms on many different pages. If I put these components in a Panel, does adding the

[Wicket-user] conceptual question

2006-02-17 Thread Frank Silbermann
I am wondering where I can get a conceptual overview of how Wicket works. My questions are: What sort of application data is automatically stored in the wicket servlet's HttpSession (for simplicity, assume that models are not detachable). What sort of data, if any, is stored in secret fields

[Wicket-user] DatePicker won't pop up

2006-02-20 Thread Frank Silbermann
What could prevent the Extensions project's DatePicker from popping up when I click the DatePicker icon? It works fine in the FormInput example, so it's not my browser settings. For the sake of help, I've reduced my code to a bare minimum, taken directly from the JavaDoc. Here's my HTML: html

RE: [Wicket-user] DatePicker won't pop up

2006-02-20 Thread Frank Silbermann
Ive just noticed that it works for me in Mozilla. But why, then, does the FormInput examples DatePicker work for me in IE? Is there some configuration or property file setting needed to make it work in IE? Some Cascading stylesheet setting required? -Original Message- From:

RE: [Wicket-user] Wicket:link question

2006-02-21 Thread Frank Silbermann
. You can not do ../xxx and absolute paths are excluded as well. Juergen On 2/16/06, Frank Silbermann [EMAIL PROTECTED] wrote: I've seen that within a wicket:link tag we can write ordinary HTML links and have Wicket lings automatically generated. The Component Reference examples use

[Wicket-user] filling a drop-down with links ?

2006-02-21 Thread Frank Silbermann
My application will have about 25 pages, all mutually linked. If I listed all those links at the top of every page it would take up too much space. Id like something that would only show the links when requested, e.g. a drop-down box of links. Im not sure how to do that in Wicket. The

RE: [Wicket-user] filling a drop-down with links ?

2006-02-21 Thread Frank Silbermann
as long as it outputs option elements. select option wicket:id=listview valur=urlspan wicket:id=title/option /select then add an attrib modifier to the listitem that adds the url into the value attribute and you are done. -Igor On 2/21/06, Frank Silbermann [EMAIL PROTECTED] wrote: My

[Wicket-user] question re DropDownList

2006-02-22 Thread Frank Silbermann
In most of the component examples we use a PropertyModel so the model is automatically updated. I presume that with the DropDownList the model would be set to the selected string. What is the purpose of its void updateModel() method? Is this something to override so that instead of setting the

RE: Results so far (was Re: [Wicket-user] VOTE)

2006-02-22 Thread Frank Silbermann
I may be offering an opinion on something already decided, but it seems to me that if we change the constructors in an earlier release, and then go to Java 1.5 on a subsequent release, if that makes maintenance of two versions easier (post-1.5 and pre-1.5) easier. Advantages: (1) Less future

[Wicket-user] JavaScript files in Wicket-Examples

2006-02-22 Thread Frank Silbermann
In the webapp folder of Wicket Examples I noticed several _javascript_ files: effects.js prototype.js scriptaculous.js What do they do? Do I need them any of them on my project? Could these have anything to do with the fact that the Wicket-Extensions DatePicker works in the

RE: [Wicket-user] DatePicker won't pop up in IE

2006-02-23 Thread Frank Silbermann
question is if the underlying date picker _javascript_ code has changed. On 2/20/06, Frank Silbermann [EMAIL PROTECTED] wrote: I've just noticed that it works for me in Mozilla. But why, then, does the FormInput example's DatePicker work for me in IE? Is there some configuration

[Wicket-user] DataTable

2006-02-24 Thread Frank Silbermann
In Wicket-Examples, Repeaters, there's an example of a DataTable from Wicket-Extensions. The data provider supplies lists of javabeans, each bean representing a row in the table. The PropertyColumn object for each column of the table gives information about the column title, its sortability, and

RE: [Wicket-user] New snapshots available

2006-02-27 Thread Frank Silbermann
The old DatePicker which didn't work in IE had in the documentation some sample code for using it to load a textbox. We also saw its use in the FormInput example. I know the new Calendar was just added to Wicket, and quite rapidly after the problem with the old DatePicker was identified, I might

[Wicket-user] Replacing Page components in response to user input

2006-03-02 Thread Frank Silbermann
I have a form which provides the user with a number of options. Based on those options chosen, I will display a DataTable. The user can play with the DataTable in terms of paging through it, re-sorting the columns, and so on. However, at any time the user can re-set the options and re-submit,

RE: [Wicket-user] Replacing Page components in response to user input

2006-03-03 Thread Frank Silbermann
Me: However, at any time the user can re-set the options and re-submit, causing a completely different DataTable based on a new DataProvider. Eelco Hillenius: First of all, ask yourself whether it is a completely different datatable, or whether the it's just a different model. Suppose it's

RE: [Wicket-user] Replacing Page components in response to user input

2006-03-03 Thread Frank Silbermann
I can see the motivation for putting my replaceable components in a Panel if the HTML requirements differ.Likewise, if I have enough components to replace that I'd rather not have to replace them one at a time.But if it's just a single component that I'm replacing, is there really any

RE: [Wicket-user] Rendering DataTable or DataView (or model) as Excel sheet

2006-03-06 Thread Frank Silbermann
From 2006/02/01: Me: ASP.NET has an easy way to return a DataGrid as an MSExcel file: Dim stringwriter As New System.IO.StringWriter() Dim htmlwriter As New System.Web.UI.HtmlTextWriter(stringwriter) DataGrid1.RenderControl(htmlwriter) Response.AppendHeader(content-disposition,

RE: [Wicket-user] Rendering DataTable or DataView (or model) as Excel sheet

2006-03-07 Thread Frank Silbermann
On 3/6/06, Frank Silbermann [EMAIL PROTECTED] wrote: From 2006/02/01: Of greater concern is that if I try to download the Excel file a second time (clicking the download button again), I get an error.If from the error page I use my browser's back button, my page returns

RE: [Wicket-user] Rendering DataTable or DataView (or model) as Excel sheet

2006-03-07 Thread Frank Silbermann
to the right values if a markupcontainer children did get rollbacked. Can you try with 1.2beta1? johan On 3/7/06, Frank Silbermann [EMAIL PROTECTED] wrote: On 3/6/06, Frank Silbermann [EMAIL PROTECTED] wrote: From 2006/02/01: Of greater concern is that if I try to download

[Wicket-user] Popping up a static file

2006-03-08 Thread Frank Silbermann
What is the easiest way of creating a link that pops up a static file (e.g. a .png drawing) in a new window? The Linkomatic example shows how an arbitrary BookmarkablePageLink can be made to pop-up, but this approach would require me to construct an HTML file with a Wicket ID to hold the image,

[Wicket-user] Best practice for handling exceptions?

2006-03-13 Thread Frank Silbermann
I have a DataTable (Wicket-extensions) that gets data from JDBC. My implementation of: java.util.Iterator IDataProvider.iterator(int first, int count) throws a variety of API exceptions (e.g. SQLException) which I have to catch, because the IDataProvider interface does not allow my

[Wicket-user] Location of image files

2006-03-14 Thread Frank Silbermann
I am writing code that will be shared between two web applications. The common code will be packaged in a .jar to be included by both web applications. One common component has a requirement to display an image whose filename (or some other handle) it takes as a parameter. The images that will

RE: [Wicket-user] Location of image files

2006-03-14 Thread Frank Silbermann
, blank.gif); after this you can create a url for the image in the package like so RequestCycle.get().urlFor(BLANK); hope this helps, -Igor On 3/14/06, Frank Silbermann [EMAIL PROTECTED] wrote: I am writing code that will be shared between two web applications.The common code will be packaged

RE: [Wicket-user] DataView (extentions)

2006-03-15 Thread Frank Silbermann
The DataTable in Wicket Extensions 1.1 handles paging and sorting, but you must build a custom IDataProvider that accumulates the sorting instructions from the DataTable and provides sorted subsets of the data when requested by the DataTable (which handles the actual paging display).

[Wicket-user] Examples of model decorators

2006-03-16 Thread Frank Silbermann
Are there any examples of model decorators I could look at? I have a model that consists of one of several code values, and I would like a label to automatically display a text string associated with the code value.

[Wicket-user] Keeping components mutually in sync

2006-03-17 Thread Frank Silbermann
I have two RadioChoice components which postback immediately. Whenever onSelectionChanged() is called on one, I may need to modify the model of the other RadioChoice (thus changing its selected value). This behavior is mutual. Is it possible to get into an infinite loop of calls to

[Wicket-user] wicket.markup.html.form.FormComponent and wicket.markup.html.form.Form

2006-03-22 Thread Frank Silbermann
I created a page using a DropDownChoice, overriding the void wantOnSelectionChangedNotifications() to return TRUE. I noticed that it worked, even though I neglected to embed it within an HTML form, adding it simply to the page (and not to a wicket.markup.html.form.Form). That made me

[Wicket-user] DataTable and IDataProvider question

2006-03-24 Thread Frank Silbermann
I am working with a database that is kind of strange. Someone provides a new table with each days data. Thus, the database can cause an SQLException as a normal result for the use case where the user requests data that hasnt been produced yet. When my Iterator IDataprovider.iterate(int

RE: [Wicket-user] DataTable and IDataProvider question

2006-03-24 Thread Frank Silbermann
the datatable is even rendering? why do the check so late in the game? -Igor On 3/24/06, Frank Silbermann [EMAIL PROTECTED] wrote: I'm using 1.2 B2 -Original Message- From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]] On Behalf Of Igor Vaynberg Sent: Friday, March 24, 2006

RE: [Wicket-user] ?Contract for Iterator IDataProvider.iterator(int first, int count) ???

2006-03-24 Thread Frank Silbermann
Vaynberg Sent: Friday, March 24, 2006 10:41 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] ?Contract for Iterator IDataProvider.iterator(int first, int count) ??? the implementation will trim to size() -Igor On 3/24/06, Frank Silbermann [EMAIL PROTECTED] wrote

[Wicket-user] Need session subclass example

2006-03-27 Thread Frank Silbermann
I understand that the Wicket way to store data in the session is to subclass WicketSession and override getSessionFactory() in the application object. Im having trouble making it work Im getting a class cast exception where I try to retrieve my session subclass. Would someone please

RE: [Wicket-user] Location of image files

2006-03-28 Thread Frank Silbermann
I wanted a panel constructed with an image filename which would popup the image in another window. I wanted my code in one place, my static image files stored in the WEB-INF folder of my web module, and couldnt figure out how to make Image component find them. Igor replied: If they live

RE: [Wicket-user] Location of image files

2006-03-28 Thread Frank Silbermann
you need to add another constructor argument: new AttributeModifier( src, /true/, new Model(pictureFile) ) also you cannot link to resources under WEB-INF so your static folder will have to be higher then that. -Igor On 3/28/06, Frank Silbermann [EMAIL PROTECTED] wrote: I wanted

RE: [Wicket-user] Location of image files

2006-03-28 Thread Frank Silbermann
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Vaynberg Sent: Tuesday, March 28, 2006 12:46 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Location of image files it should work, what does the finished output look

RE: [Wicket-user] Location of image files

2006-03-28 Thread Frank Silbermann
Ah, I think I see. It looks like a disagreement over the name of the page parameter filename versus pictureFile. Rather than setting the parameter to null, it leaves it as it was. Thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank

[Wicket-user] Wicket versus Echo

2006-03-29 Thread Frank Silbermann
I was browsing some of the framework comparisons on the web and realized that though Wicket is in key ways most similar to Echo. Yet, very little has been written to contrast these two. The one difference that I can ascertain is that Wicket exposes the underlying html whereas Echo

[Wicket-user] Wicket/Tomcat configuration: Where is System.out ???

2006-03-31 Thread Frank Silbermann
To debug an application Ive inserted a System.out.println command. Where is System.out when Im running Wicket on Tomcat? Is it captured by some special Wicket logfile (I cant find any)? It doesnt seem to be going to any of the Tomcat logfiles that I can see, nor to the console window

RE: [Wicket-user] Wicket/Tomcat configuration: Where is System.out ???

2006-03-31 Thread Frank Silbermann
, or on the console itself where it starts. if you run on linux, you'll have to redirect that output to a log file. Martijn On 3/31/06, Frank Silbermann [EMAIL PROTECTED] wrote: To debug an application I've inserted a System.out.println command. Where is System.out when I'm running Wicket on Tomcat

[Wicket-user] DataTable formatting

2006-03-31 Thread Frank Silbermann
Is there a way to make the DataTable draw a line between every row and column like a grid?

RE: [Wicket-user] Wicket 1.2-beta3 is available

2006-04-03 Thread Frank Silbermann
My application uses DataTables whose column headers come from ResultSetMetaData and whose data comes from ResultSet. With the new .jars, Im getting the column headers, but not the table contents. I clicked something and got a no such method exception. Have the DataTable extensions been

RE: [Wicket-user] Wicket 1.2-beta3 is available

2006-04-03 Thread Frank Silbermann
Never mind. It looks like a problem with my own incomplete re-compiles. /Frank -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Silbermann Sent: Monday, April 03, 2006 2:16 PM To: wicket-user@lists.sourceforge.net Subject: RE: [Wicket-user

RE: [Wicket-user] ?Contract for Iterator IDataProvider.iterator(int first, int count) ???

2006-04-04 Thread Frank Silbermann
I have a question about the intended use of the DataTable components provided in Wicket Extensions. The DataTable relies upon an IDataProvider to provide the data. To do this, we implement: Iterator iterate(first, count) Lacking any advice to the contrary, I assumed that

RE: [Wicket-user] ?Contract for Iterator IDataProvider.iterator(int first, int count) ???

2006-04-04 Thread Frank Silbermann
of invocations between these two methods. size() is meant to return the total number of rows iterator() is used to return a window that will be displayed those are the only contracts. what exactly is the problem? -Igor On 4/4/06, Frank Silbermann [EMAIL PROTECTED] wrote: I

RE: [Wicket-user] Question about DataTable and IDataProvider restated

2006-04-04 Thread Frank Silbermann
. Into which method _should_ I place the database query? What are my options? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Silbermann Sent: Tuesday, April 04, 2006 3:33 PM To: wicket-user@lists.sourceforge.net Subject: RE: [Wicket-user

RE: [Wicket-user] Question about DataTable and IDataProvider restated

2006-04-05 Thread Frank Silbermann
Me: I suppose the usual approach is to trigger the download of IDataProvider's data via the event handler of the submit button. That way, the data would be available for both Iterator IDataProvider.iterate(first, count) and int IDataProvider.size(). Eelco Hillenius Sent: Tuesday, April 04,

RE: [Wicket-user] ?Contract for Iterator IDataProvider.iterator(int first, int count) ???

2006-04-05 Thread Frank Silbermann
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor Vaynberg Sent: Tuesday, April 04, 2006 6:32 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] ?Contract for Iterator IDataProvider.iterator(int first, int count) ???

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
class=datatable wicket:id=datatable . -Igor On 3/31/06, Frank Silbermann [EMAIL PROTECTED] wrote: Is there a way to make the DataTable draw a line between every row and column ? like a grid?

RE: [Wicket-user] DataTable formatting

2006-04-10 Thread Frank Silbermann
: show;' ? On 4/10/06, Frank Silbermann [EMAIL PROTECTED] wrote: To draw lines separating every cell in my DataTable I tried: table border=1 wicket:id=datatableas Igor recommended. It worked fine, except for when the IDataProvider provided either a null or an empty string for a particular

RE: [Wicket-user] DataTable formatting

2006-04-11 Thread Frank Silbermann
Subject: Re: [Wicket-user] DataTable formatting Have you tried the CSS attribute 'empty-cells: show;' ? On 4/10/06, Frank Silbermann [EMAIL PROTECTED] wrote: To draw lines separating every cell in my DataTable I tried: table border=1 wicket:id=datatableas Igor recommended. It worked fine, except

[Wicket-user] GridView option?

2006-04-25 Thread Frank Silbermann
On each page of a GridView (Wicket Extensions 1.2) the elements enter the grid in row-order, from top to bottom. Is there a way to have the DataProvider populate the grid in column-order filling one column from top to bottom before moving onto the next column to the right? If not,

RE: [Wicket-user] DatePicker not work for 1.2RC3 ?

2006-05-04 Thread Frank Silbermann
I have a different problem. Its popping up, but when I select todays date it gives me 02/05/2170 ^^ for todays date. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of smallufo Sent: Wednesday, May 03, 2006 11:20 PM To:

RE: [Wicket-user] DatePicker not work for 1.2RC3 ?

2006-05-04 Thread Frank Silbermann
-Original Message- From: Frank Silbermann Sent: Thursday, May 04, 2006 9:10 AM To: 'wicket-user@lists.sourceforge.net' Subject: RE: [Wicket-user] DatePicker not work for 1.2RC3 ? I have a different problem. Its popping up, but when I select todays date it gives me 02/05/2170

RE: [Wicket-user] date picker settings first day

2006-05-04 Thread Frank Silbermann
Title: date picker settings first day Is there any way to prevent the DatePicker from closing when one clicks the link to change the month? When my user wants to change the date from, say, May 5th to April 30th, he has to pop-up the DatePicker twice once to change the month and once to

RE: [Wicket-user] DatePicker not work for 1.2RC3 ?

2006-05-04 Thread Frank Silbermann
at datepicker?? And what does it say at first in the field itself? how is it formatted then? johan On 5/4/06, Frank Silbermann [EMAIL PROTECTED] wrote: I have a different problem. It's popping up, but when I select today's date it gives me 02/05/2170 ^^ for

RE: [Wicket-user] auto-submit when done picking date

2006-05-04 Thread Frank Silbermann
way. johan On 5/4/06, Frank Silbermann [EMAIL PROTECTED] wrote: Is there any way to prevent the DatePicker from closing when one clicks the link to change the month? When my user wants to change the date from, say, May 5th to April 30th, he has to pop-up the DatePicker twice once to cha

RE: [Wicket-user] auto-submit when done picking date

2006-05-04 Thread Frank Silbermann
Well, is there a configuration option only to change the date when a day is chosen, but not when shifting to a new month? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eelco Hillenius Sent: Thursday, May 04, 2006 12:23 PM To:

RE: [Wicket-user] The other side of Wicket ...

2006-05-04 Thread Frank Silbermann
My great hope is that Wicket can provide great productivity and power to people who have a true mastery of object-oriented techniques, raising their pay and status above that of ordinary code-monkeys and API-memorizers. My great fear is that the market will reject Wicket because

RE: [Wicket-user] The other side of Wicket ...

2006-05-05 Thread Frank Silbermann
For the last couple of months I've been building in Wicket to replace an ASP.NET application. My impression is that ASP.NET is the best thing I've ever seen for doing a one-of. Any page content that I'm going to build and use in just one page (or simply include with no modifications in a variety

RE: [Wicket-user] auto-submit when done picking date

2006-05-05 Thread Frank Silbermann
it. and intergrated it into wicket. johan On 5/4/06, Frank Silbermann [EMAIL PROTECTED] wrote: Well, is there a configuration option only to change the date when a day is chosen, but not when shifting to a new month? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf

[Wicket-user] Concurrent Modification Exception

2006-05-09 Thread Frank Silbermann
I created a CheckboxData type containing a boolean (checked) and a label. I created a CheckboxDataPanel whose constructor takes a CheckboxData object, and which displays a checkbox and the label each using a PropertyModel built from the Checkbox Data object. I constructed a ListView

RE: [Wicket-user] Concurrent Modification Exception -- NEVER MIND!

2006-05-09 Thread Frank Silbermann
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Silbermann Sent: Tuesday, May 09, 2006 12:35 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Concurrent Modification Exception I created a CheckboxData type containing a boolean

RE: [Wicket-user] Free Maven2 book

2006-05-15 Thread Frank Silbermann
I received an unusually low number of posts this weekend from the Wicket user group, and none today. Is the mailing list down? If not, have I been dropped from the list? --- Using Tomcat but need to do more? Need to support web services,

RE: [Wicket-user] Google Web Toolkit integration ?

2006-05-17 Thread Frank Silbermann
I, personally, don't care for HTML, and perhaps I might enjoy programming in Echo2 better. But suppose an employer maintained an HTML fragment with links to their entire portfolio of web applications, and wanted this fragment to appear on every page of each web application. Since someone else is

RE: [Wicket-user] Google Web Toolkit integration ?

2006-05-17 Thread Frank Silbermann
On 5/17/06, Frank Silbermann [EMAIL PROTECTED] wrote: I, personally, don't care for HTML, and perhaps I might enjoy programming in Echo2 better. But suppose an employer maintained an HTML fragment with links to their entire portfolio of web applications

  1   2   >