5.4-alpha-15 resource exceptions

2013-08-29 Thread Ville Virtanen
Dear list, just tried to upgrade from 5.4-alpha-14 to 5.4-alpha-15, but the log is littered with exceptions like this: Caused by: java.lang.IllegalStateException: Resource classpath:com/orient/web/customer/base/SecureBasePage.class does not match the case of the actual file name, 'E:\projec

Re: [5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Muhammad Gelbana
*@Lance* I tried implementing a RequestFilter instead but it looks like Derkoe didn't do that in the first place for a reason. At some point, I need to have a HttpServleRequest object, which cannot be obtained from Tapestry's Request object. *@Thiago* I can't use a per-thread service. The user nee

Re: Lightweight Tapestry5 Design/Code Switch plugin for Eclipse

2013-08-29 Thread Barry Books
Simple, Perfect Thanks Barry On Thu, Aug 29, 2013 at 4:38 PM, Dmitry Gusev wrote: > Added Eclipse update site: > > https://dl.bintray.com/anjlab/eclipse > > > > On Thu, Aug 29, 2013 at 10:30 PM, Thiago H de Paula Figueiredo < > thiag...@gmail.com> wrote: > > > Nice! Thanks! Any plans for an upd

Re: JQuery Datatable Bind Mixin

2013-08-29 Thread Taha Hafeez Siddiqi
Try curRow.fileID instead of ${curRow.fileID} as parameter to bind.context Sent from my iPhone On 30-Aug-2013, at 3:26 AM, john c wrote: > I am attempting to use the jquery/bind mixin with a datatable, but not having > success. > The relevant code is below. Basically I want to click a row and

JQuery Datatable Bind Mixin

2013-08-29 Thread john c
I am attempting to use the jquery/bind mixin with a datatable, but not having success. The relevant code is below. Basically I want to click a row and have it create a tapestry event, with the fileID. I have tested and found the event occurs, but I can't seem to pass the fileID context. Any idea

Re: Lightweight Tapestry5 Design/Code Switch plugin for Eclipse

2013-08-29 Thread Dmitry Gusev
Added Eclipse update site: https://dl.bintray.com/anjlab/eclipse On Thu, Aug 29, 2013 at 10:30 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > Nice! Thanks! Any plans for an update site for easier installing? > > > On Thu, 29 Aug 2013 12:27:38 -0300, Dmitry Gusev > wrote: > >

Re: Include everything with jquery java anotation ImportJQueryUI

2013-08-29 Thread Boris Horvat
Well I probably wont use them all but there is a possibility that I will use many. Still the plugin I plan to use will depend on quite a few and I was just curios if there is such way to add them all at once (I guess many of mine plugins will use some of them) PS I would follow the approach and cr

Re: AJAX zone refresh not working in IE9 and IE10

2013-08-29 Thread Jonathan Martin
After some debugging, I've found that when a zone update is initiated all browsers call the 'onAction' function associated with the clicked action or event link. However, only IE9 and IE10 proceed to call 'setupRender' and do a full page refresh, resetting the entire page. This is why the null

Re: Lightweight Tapestry5 Design/Code Switch plugin for Eclipse

2013-08-29 Thread Thiago H de Paula Figueiredo
Nice! Thanks! Any plans for an update site for easier installing? On Thu, 29 Aug 2013 12:27:38 -0300, Dmitry Gusev wrote: FYI: https://github.com/anjlab/eclipse-tapestry5-plugin TapestryTools doesn't work good for this when you have multiple files with same name, for example, multiple

Re: Include everything with jquery java anotation ImportJQueryUI

2013-08-29 Thread Thiago H de Paula Figueiredo
On Thu, 29 Aug 2013 13:47:34 -0300, Boris Horvat wrote: Something like that but easier :D I would like to avoid doing @ImportJQueryUI({"jquery.ui.core", "jquery.ui.widget", "jquery.ui.mouse", "jquery.ui.position", "jquery.ui.accordion", "jquery.ui.autocomplete", "jquery.ui.button", "jquery.

Re: [5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Thiago H de Paula Figueiredo
On Thu, 29 Aug 2013 12:11:32 -0300, Muhammad Gelbana wrote: But I need to initially store some values and retrieve them later on. If I inject the *ApplicationStateManager* in the filter and store values in it, then retrieve these values later on through a tapestry service. How will tape

Re: Include everything with jquery java anotation ImportJQueryUI

2013-08-29 Thread Boris Horvat
Something like that but easier :D I would like to avoid doing @ImportJQueryUI({"jquery.ui.core", "jquery.ui.widget", "jquery.ui.mouse", "jquery.ui.position", "jquery.ui.accordion", "jquery.ui.autocomplete", "jquery.ui.button", "jquery.ui.datepicker", "jquery.ui.dialog", "jquery.ui.draggable", "jq

Re: [5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Lance Java
I think you need to be aware of how the request, httpsession and response objects work in tapestry. Ultimately they are proxies that lookup values from RequestGlobals. 1. RequestGlobals.storeServletRequestResponse(…) is called 2. The HttpServletRequestFilters run 3. RequestGlobals.storeServletRequ

Using Hibernate Session outside of @CommitAfter. Bugs I saw in our project

2013-08-29 Thread Martin Kersten
I noticed a new problem with the hibernate module. Currently it is completely correct to use a session outside of a given transaction since Tapestry starts a new one. The coworker did following things: service.createUser(); service.createUserProfile(); works. So now it was my turn so I used th

Lightweight Tapestry5 Design/Code Switch plugin for Eclipse

2013-08-29 Thread Dmitry Gusev
FYI: https://github.com/anjlab/eclipse-tapestry5-plugin TapestryTools doesn't work good for this when you have multiple files with same name, for example, multiple Index.tml files. This plugin aims to fix this. -- Dmitry Gusev AnjLab Team http://anjlab.com

Re: [5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Muhammad Gelbana
I guess this exception explains what I'm talking about java.lang.NullPointerException: Unable to delegate method invocation to property 'request' of , because the property is null. *-* *Muhammad Gelbana* J

Re: [5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Muhammad Gelbana
But I need to initially store some values and retrieve them later on. If I inject the *ApplicationStateManager* in the filter and store values in it, then retrieve these values later on through a tapestry service. How will tapestry know which session is currently active ? Shouldn't I wire the *Ap

Re: [5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Thiago H de Paula Figueiredo
On Thu, 29 Aug 2013 10:45:26 -0300, Muhammad Gelbana wrote: I only need to enable session management in my tapestry code to refer to session stored values. If they're stored by @SessionState, just use the ApplicationStateManager service. If they're set directly into the HttpSession, @Inje

[5.3.7] Integrating Metro web services (Using Derkoe's code)

2013-08-29 Thread Muhammad Gelbana
I'm using Derkoe's code to integration Metro with Tapestry. I'm still not fully aware of what I'm doing...but that's fine, its working :D I only need to enable session management in my tapestry code to refer to session stored values. I edited this filter class to obtain the username\password fro

[5.4] LinkSubmit Client-side Validation Broken

2013-08-29 Thread Peter Hvass
Hello, Just wanted to check if anyone else can reproduce this before I post an issue; Example tml; http://tapestry.apache.org/schema/tapestry_5_3.xsd";> Bob Link Submit Example java; @Property private String bob_; Clicking the linksubmit causes a POST regardle

Re: [t5.4] Twitter Typeahead Autocomplete

2013-08-29 Thread Peter Hvass
Alright - hopefully they'll work something out eventually. :) For now we'll override Autocomplete.css with our hacks. Thanks again Howard! - Original Message - From: "Howard Lewis Ship" To: "Tapestry users" Sent: Thursday, August 29, 2013 12:16:25 PM Subject: Re: [t5.4] Twitter

Re: [t5.4] Twitter Typeahead Autocomplete

2013-08-29 Thread Howard Lewis Ship
This is something being actively pursued in the Typeahead.js forums. http://jsfiddle.net/needathinkle/MA7Ep/ On Thu, Aug 29, 2013 at 9:00 AM, Peter Hvass wrote: > Hello, > > > We've been playing around with the new autocomplete from alpha 15 today > and discovered > some gnarly style issues. >

[t5.4] Twitter Typeahead Autocomplete

2013-08-29 Thread Peter Hvass
Hello, We've been playing around with the new autocomplete from alpha 15 today and discovered some gnarly style issues. Some of the elements have style attributes that kind of conflict with the way bootstrap 3 forms work (i.e.: all inputs having 100% width by default). We made the foll