Re: Customizing Eclipse for Tapestry 4 development

2006-02-07 Thread jeff emminger
ully qualified* class name--not the class name.) > > -= Mat > > On 2/4/06, jeff emminger <[EMAIL PROTECTED]> wrote: > > great work! > > > > i must be doing something wrong, because when using other than the > > default package, i keep getting an error: > >

Re: Customizing Eclipse for Tapestry 4 development

2006-02-04 Thread jeff emminger
great work! i must be doing something wrong, because when using other than the default package, i keep getting an error: Could not load class Home from WebappClassLoader delegate: false repositories: /WEB-INF/classes/ --> Parent Classloader: [EMAIL PROTECTED] : Home my Home class is in "c

Re: form success and cancel both called?

2006-01-18 Thread jeff emminger
ly bug here is the > lack of good documentation about this concept. > > On 1/17/06, jeff emminger <[EMAIL PROTECTED]> wrote: > > alright i'll give that a shot - does this mean it's a bug? > > > > > > On 1/17/06, Ben Dotte <[EMAIL PROTECTED]> wrote: >

Re: form success and cancel both called?

2006-01-17 Thread jeff emminger
instead of @Submit fixed the problem. > > Ben > > -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Emminger > Sent: Tuesday, January 17, 2006 10:44 AM > To: tapestry-user@jakarta.apache.org > Subject: form success and cancel both called? > > i

form success and cancel both called?

2006-01-17 Thread Jeff Emminger
it seems from my log output that when i click my Form's cancel button, the success listener is being called after the cancel listener. i have a Form: and in the page template a cancel button: in the .java file: public String onCancel() { log.debug("onCanc

Re: contrib:Table headings produces nested tables

2006-01-09 Thread jeff emminger
rious solutions (some suggested on this list as well) > work okay in the majority of cases, the results are frequently unacceptable. > This especially applies to wrapping and the icon location. > > In contrast, works rather well everywhere and in all cases, hence its > use. > >

contrib:Table headings produces nested tables

2006-01-09 Thread jeff emminger
why is it that the contrib:Table renders its headings as entire new table within the th? some rendered html source from the Table example at https://tapestrywebcomponentexamples.dev.java.net: [snip] Birth Date   SSN

Re: [OTAnn] Feedback

2005-11-07 Thread jeff emminger
pretty slick, but how does a web browser *not* harness the power of broadband? shenanigans wrote: I was interested in getting feedback from current mail group users. We have mirrored your mail list in a new application that provides a more aggregated and safe environment which utilizes the po

Re: best practices?

2005-11-05 Thread jeff emminger
? if it's the former i think i'm ok. Ron Piterman wrote: ציטוט jeff emminger: looking for some tips from the experienced... Not sure I match but give it a try... i've developed a simple wiki as a learning project. for my wiki crud pages, i've given them a WikiPa

best practices?

2005-11-05 Thread jeff emminger
looking for some tips from the experienced... i've developed a simple wiki as a learning project. for my wiki crud pages, i've given them a WikiPage property so i can retrieve a WikiPage object from the database, and set it on the page along the lines of WikiPageUpdate: @Persist public abs

Re: friendly external urls

2005-11-04 Thread Jeff Emminger
excellent - i had to modify encoding.setParameterValues(ServiceConstants.PARAMETER, "S"+params); to handle the fact that params is an Array, but it works fine...thanks! Kent Tong wrote: Jeff Emminger jeffemminger.com> writes: ugly urls look like: http://localhost:/

Re: friendly external urls

2005-11-03 Thread Jeff Emminger
hi kent, ugly urls look like: http://localhost:/wiki/app?page=WikiPageRead&service=external&sp=Sfoo friendly urls like: http://localhost:/wiki/page/Sfoo the attached service encoder is *identical* to the vlib ViewPageEncoder... hivemodule code: Kent Tong wrote: Jeff

Re: Java Web Framework Poll

2005-11-02 Thread jeff emminger
yeah, i know - i mean, that would be unethical... Scott Russell wrote: If you delete cookies you can vote twice... or more. ;-) -Scott On Wed 2 November 2005 22:59, Howard Lewis Ship wrote: http://forums.about.com/n/pfx/forum.aspx?nav=messages&tsn=1&tid=1584&webtag =ab-java Go vote! -- Ho

friendly external urls

2005-11-01 Thread Jeff Emminger
for ExternalLinks, i've basically copied the vlib example from http://jakarta.apache.org/tapestry/UsersGuide/friendly-urls.html i'm trying to achieve urls like /app/page/pageFoo /app/page/pageBar what i've achieved so far is /app/page/SpageFoo /app/page/SpageBar how do i get the friendly urls t

Re: Form Cancel Curiousity

2005-10-28 Thread jeff emminger
just a guess without ever having used the T4 cancel feature or looked at the source, but since you changed the type from submit to button, that could suggest that the function invoked by onclick calls submit() on the form as well... so your original submit button would trigger a submit as well

Re: Very strange error message

2005-10-28 Thread jeff emminger
looks like you're trying to override a final method? ;-) perhaps there's a method in your class with the same signature as a final method in BaseComponent or whatever your base class is. Jan Normann Nielsen wrote: After trying to use one of my components, T4 says to me: Failure enhancing cla

Re: Forms and FormSupportImpl.writeHiddenFields

2005-10-24 Thread jeff emminger
Lewis Ship: It's for XHTML compatibility; tags must be inside a block level element such as . What we should do is add a CSS class, say "hidden-container" to the so that you can re-style it using CSS to be an inline. On 10/20/05, Jeff Emminger <[EMAIL PROTECTED]> wrote: wh

Forms and FormSupportImpl.writeHiddenFields

2005-10-20 Thread Jeff Emminger
what's with this method surrounding the hidden fields in a ? is a block-level element and would potentially add a line break wherever a Form is placed. i typically style my tags as form { display:inline; margin:0; padding:0; } to prevent them adding any whitespace, so this new

[slightly OT] hivemind/tapestry debug output

2005-10-20 Thread Jeff Emminger
hi all, i have tapestry v4.0-beta-11 running on tomcat 5.0.28... i have all necessary jars in my webapps's WEB-INF/lib... i have a log4j.properties file in WEB-INF/classes with the lines: log4j.category.org.apache.tapestry=warn log4j.category.org.apache.hivemind=warn i have commons-logging.pr

Re: Need help

2005-09-22 Thread Jeff Emminger
perhaps the DynamicBlock is what you need? http://www.behindthesite.com/blog/C1931765677/E1630021481/ Anjali Abraham wrote: Hi All, I have a scenario wherein in my page, I have in a table 5 rows with each row having text field, now in the same page I have a button say "Add More Fiel

Re: DOUBLE_CLICK

2005-09-22 Thread Jeff Emminger
seems to me that it shouldn't matter what type of click generates the event to tapestry. if we're talking form components, what's going to notify tapestry that something happened is a POST, correct? so all your client-side script has to do is cause a form submit on double click, which could b

Re: Tapestry and Hibernate

2005-07-29 Thread jeff emminger
doesn't using a servlet filter as suggested by hibernate.org fix this? http://www.hibernate.org/43.html Chris Chiappone wrote: I have been developing an application using tapestry 3.0.3 and hibernate 3.0.2. Took a while to get everything working correctly, and learning both of the frameworks.

how to select option in PropertySelection from querystring?

2005-07-27 Thread Jeff Emminger
hi all, i have a page with a PropertySelection that renders a table of data depending on which option is selected. the table headers have DirectLinks to do sorting of the data. i'm passing the id of the selected option as a parameter in the DirectLink. i'm having trouble figuring out how t

Re: Best practices: inheritance

2005-07-11 Thread jeff emminger
i believe you can map multiple page names to one file in your .application e.g. so whatever "Page" is requested, the same class and template is reused. Darío Vasconcelos wrote: Hi, I have a burning question in my mind: suppose I have 10 pages that have the same basic layout: some titles a

Re: continued: tapestry component repository

2005-07-11 Thread Jeff Emminger
+1 for tacos. my first thought when i saw the original thread was "isn't that what tacos is?" besides, it has the coolest name. Hugo Palma wrote: I have to admit i hadn't look very closely at Tacos. All it seemed to me was that it was an abandoned sf project with a few components and a real

Re: newbie question - enabling disabling Textfields?

2005-07-11 Thread Jeff Emminger
i believe what you need is the Script component... you can use standard javascript, but tapestry will insert the runtime generated field names for you http://jakarta.apache.org/tapestry/3.0.3/doc/ComponentReference/Script.html Muhariz Jabeer wrote: hey guys this is a complete newbie question.

multiple select issue

2005-07-11 Thread Jeff Emminger
hi all - i'm making a simple bug tracking app for tapestry/hibernate learning purposes. on my AddBug page i want to include a multiple Select component to allow selection of related bugs. currently the Select's Options are being populated with a List of simple Bug objects, which contain a

how to persist id parameter?

2005-07-07 Thread Jeff Emminger
apologies for a probably simple question: i have my List page use a DirectLink to send to an Edit page with the id of the object clicked as a parameter. the Edit page picks this id up in pageBeginRender() from getServiceParameters() and loads the appropriate object. the problem is when i po

Re: form not validating with non-valid fields?

2005-07-07 Thread Jeff Emminger
kent, thank you - that was it. Kent Tong wrote: Jeff Emminger jeffemminger.com> writes: i have a Form with two fields, "title" and "description". leaving the form blank and submitting, i have found that the ValidationDelegate incorrectly reports no errors when u

form not validating with non-valid fields?

2005-07-06 Thread Jeff Emminger
hi all, i have a Form with two fields, "title" and "description". leaving the form blank and submitting, i have found that the ValidationDelegate incorrectly reports no errors when using a ValidField and a TextArea, but works correctly using a ValidField and a ValidTextArea (from http://www.

ATTN: Howard

2005-06-29 Thread Jeff Emminger
Howard, I know you must be busy with v4.0 and Oscon coming up! I've been trying to contact you to find your training availability - the company I work for wants to give you lots of money for some training. :-) Please email me at jemminger (at) thig.com at your earliest convenience. Thanks,