Re: [T5.4-alpha-2] Ajax alerts not rendered after a call to dismissAll()

2013-01-31 Thread Steve Eynon
> Can you please open an issue and attach the patch there? https://issues.apache.org/jira/browse/TAP5-2062 - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional commands, e-mail: users-h...@tapestry.apach

Re: Disable operations caused due to back and forward buttons

2013-01-31 Thread harishpatarla
Yes Slimer. I wanted to know if writing some javascript in my executionProgress.tml will help? If yes, Can you please tell me where i can put that in my executionProgress.tml . Here is it: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd"; title="Search Testable Entity"> The java scrip

Re: Disable operations caused due to back and forward buttons

2013-01-31 Thread Steve Eynon
As it's a server side process you're trying to protect, store a flag in the session when the user has clicked "Run". Then before you kick off the process again, check the status of the flag. - To unsubscribe, e-mail: users-unsubsc

Re: Disable operations caused due to back and forward buttons

2013-01-31 Thread harishpatarla
Thanks a lot for your response Bob. The below code i have in ViewTest.tml(test/view) ${message:label.markup} : When we click on Run button as shown in a

Re: [Tapestry4.1] web site links broken

2013-01-31 Thread Bob Harner
This seems to be a (hopefully temporary) casualty of the switch that was made a couple of days ago to a svnpubsub approach to publishing the docs. So far only a subset of the older docs have survived the transition: http://tapestry.1045711.n5.nabble.com/Re-svn-commit-r848449-in-websites-produ

Re: Tapestry 4 gone offline?

2013-01-31 Thread Howard Lewis Ship
We're reorganizing the web site as part of a mandated change from Apache Infrastructure, and culling older (> 5 years out of date) documentation, to keep it manageable. You can find archives of older releases here: http://archive.apache.org/dist/tapestry/ You'll see that there are documentation

[Tapestry4.1] web site links broken

2013-01-31 Thread Aaron Kaminsky
Hello, I am one of the lucky few still on Tapestry 4.1. Recently I discovered that the web site is full of broken links. I tried to open a Jira issue, but I could not figure out how to open an issue for Tapestry 4.1. I guess we are on too old a version? One example is: http://tapestry.apach

Re: wired error / firewall depending? / javascript float number error

2013-01-31 Thread sommeralex
thank you i was blind for that difference. My page supports english and german. in german, the seperator is , and in english . the textbox is defined as @Persist @Property private Double latitude; @Persist @Property private Double longitude; which causes the problem if the page is german a

Re: [5.4-alpha-2] core_**.properties got wrong encoding?

2013-01-31 Thread Christian Riedel
Done: TAP5-2061 https://issues.apache.org/jira/browse/TAP5-2061 Thanks Bob! Am 31.01.2013 um 19:12 schrieb Bob Harner: > Yes to both, although it may take me a day or two to get to it. > > On Thu, Jan 31, 2013 at 11:01 AM, Christian Riedel > wrote: >> Hi Bob, >> >> would you be able to restor

Re: [t5.3.6] Is it possible to contribute a SelectModel ?

2013-01-31 Thread Thiago H de Paula Figueiredo
On Thu, 31 Jan 2013 15:06:59 -0200, Muhammad Gelbana wrote: Thanks. I know how to contribute a ValueEncoder but I don't know where to contribute a SelectModel ! You don't contribute SelectModels. You need to specify them in each component that uses it. In addition, the name (label) for ea

Re: [5.4-alpha-2] core_**.properties got wrong encoding?

2013-01-31 Thread Bob Harner
Yes to both, although it may take me a day or two to get to it. On Thu, Jan 31, 2013 at 11:01 AM, Christian Riedel wrote: > Hi Bob, > > would you be able to restore the correct encoding? Should I open a JIRA? > > Cheers > Christian > > > Am 31.01.2013 um 04:19 schrieb Bob Harner: > >> No, I don't

Re: wired error / firewall depending? / javascript float number error

2013-01-31 Thread Jonathan Barker
Could this relate to the use of a comma as either a thousands separator or decimal separator? The interpretation would then be locale dependent. I don't know what you are doing behind the scenes but I could imagine some interesting issues if there were conversions to/from strings. On Thu, Jan

Re: AJAX Filtered Grid and Firefox

2013-01-31 Thread lprimak
Ajax form is submitted by setSubmittingElement() followed by onsubmit()This is used ( and tested / works ) here (line 27, 28):http://code.google.com/p/flowlogix/source/browse/tapestry-services/src/main/resources/com/flowlogix/web/mixins/DisableAfterSubmit.jsGeoff Callender wrote:> Yes, but... i

Re: [t5.3.6] Is it possible to contribute a SelectModel ?

2013-01-31 Thread Muhammad Gelbana
Thanks. I know how to contribute a ValueEncoder but I don't know where to contribute a SelectModel ! On Thu, Jan 31, 2013 at 6:26 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Thu, 31 Jan 2013 12:48:03 -0200, Muhammad Gelbana > wrote: > > I have some ValueEncoders contrib

Re: [t5.3.6] Is it possible to contribute a SelectModel ?

2013-01-31 Thread Thiago H de Paula Figueiredo
On Thu, 31 Jan 2013 12:48:03 -0200, Muhammad Gelbana wrote: I have some ValueEncoders contributed but one of these encoders is for an * enum*, is it possible contribute a SelectModel for that enum too ? Because I need to override the displayed name for the enum values. Just use override(

Re: [5.4-alpha-2] core_**.properties got wrong encoding?

2013-01-31 Thread Christian Riedel
Hi Bob, would you be able to restore the correct encoding? Should I open a JIRA? Cheers Christian Am 31.01.2013 um 04:19 schrieb Bob Harner: > No, I don't think it's just you. I see it too. I think some of the > files might have got munged in the merge into the "core" property > files a few w

Re: Tapestry Application setup: What is wrong here?

2013-01-31 Thread Peter Wendorff
Am 31.01.2013 15:44, schrieb Thiago H de Paula Figueiredo: On Thu, 31 Jan 2013 12:28:50 -0200, Thiago H de Paula Figueiredo wrote: You've cut the error message from the stack trace. Ooops, it's actually there. It seems the template files aren't included in the classpath or they're ending u

Re: Progress bar component in Tapestry5

2013-01-31 Thread Lance Java
I've implemented a very simple / ugly progress bar in tapestry. You could use your progress bar widget of choice to make it look prettier (jquery progress / bootstrap progress etc). Tasks are managed by the ProgressTaskManager which is backed by Tapestry's ParallelExecutor. Some interesting files:

Re: Progress bar component in Tapestry5

2013-01-31 Thread rnicholus
A second option is to make use of Bootstrap's Progress Bar component, if you are already using Bootstrap, this should be simple to implement. http://twitter.github.com/bootstrap/components.html#progress -- View this message in context: http://tapestry.1045711.n5.nabble.com/Progress-bar-compone

Re: Tapestry Application setup: What is wrong here?

2013-01-31 Thread Thiago H de Paula Figueiredo
On Thu, 31 Jan 2013 12:28:50 -0200, Thiago H de Paula Figueiredo wrote: You've cut the error message from the stack trace. Ooops, it's actually there. It seems the template files aren't included in the classpath or they're ending up in a wrong place. -- Thiago H. de Paula Figueiredo --

Re: Tapestry Application setup: What is wrong here?

2013-01-31 Thread Thiago H de Paula Figueiredo
On Thu, 31 Jan 2013 11:13:51 -0200, Peter Wendorff wrote: Hi. Hi! You've cut the error message from the stack trace. Are you sure your module classes are being loaded? -- Thiago H. de Paula Figueiredo - To unsubscribe,

Tapestry Application setup: What is wrong here?

2013-01-31 Thread Peter Wendorff
Hi. I'm not sure what and why it happened, but I have a problem. As I asked last time here I tried to set up a modular tapestry application. Thanks for your help all together, that's more or less working: the modules are loaded now when I run the main application, and even the pages are known a

Re: Filter URL

2013-01-31 Thread Thiago H de Paula Figueiredo
On Thu, 31 Jan 2013 09:14:38 -0200, khaled69100 wrote: Hello, Hi! in web.xml i add a filter like this : searchUserDetailsFilter net.awl.tapestry5.oops.user.pages.manageuser.SearchUserDetailsFilter searchUserDetailsFilter /sear

Filter URL

2013-01-31 Thread khaled69100
Hello, In my application, all url is mapped to return the home page. Now i need to filter a particular url(http://localhost:8082/myapp-webapp/en/user/manageuser/searchuserdetails?externalId=10) in web.xml i add a filter like this : searchUserDetailsFilter

Re: AJAX Filtered Grid and Firefox

2013-01-31 Thread Geoff Callender
Yes, but... it seems an AJAX Form is different - it doesn't respond to this.form.submit(). I've seen it suggested somewhere to use performSubmit(), and in tapestry.js it describes the function as programatically performing a submit. Works fine, except in an AJAX Form with Firefox. Anyway I'm

Re: datatables tapestry-jquery refresh

2013-01-31 Thread rosecorp
Thanks Manu, I'll give it a go and write what was a result. -- View this message in context: http://tapestry.1045711.n5.nabble.com/datatables-tapestry-jquery-refresh-tp5719681p5719697.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: datatables tapestry-jquery refresh

2013-01-31 Thread Emmanuel DEMEY
In your page, you can maybe use the AjaxResponseRenderer and its addCallback(JavaScriptCallBack) method. In your JavaScriptCallBack implementation, you will call the fnDeleteRow method of the DataTable widget : http://www.datatables.net/api 2013/1/31 rosecorp > Hi Manu, > > Sorry I wasn't acc

Re: datatables tapestry-jquery refresh

2013-01-31 Thread rosecorp
Hi Manu, Sorry I wasn't accurate enough. I Java code I listent to the event: @OnEvent(value = "removeItem") boolean onAd(String id) { service.deleteItem(id); return true; } in tml: <#>

Re: datatables tapestry-jquery refresh

2013-01-31 Thread Emmanuel DEMEY
Hi, can you explain more in details how you remove your row ?? in order to find the best solution to your problem. You can maybe return a JavaScriptCallBack to your Ajax Request, that will delete the row with the DataTable API. Manu 2013/1/30 rosecorp > Guys, > > I have functionality on plac

Re: Disable operations caused due to back and forward buttons

2013-01-31 Thread Bob Harner
You haven't said what mechanisms you're using to navigate between pages. But my guess is that to achieve the behavior you want you'll need to eliminate the middle page and put its code into the first page, with the Run button on the first page causing a form submission followed by a redirect to the

Re: Progress bar component in Tapestry5

2013-01-31 Thread Emmanuel DEMEY
Hi, You can maybe use Tapestry5-jQuery, and create your own Progress Bar with the jQuery UI Widget : http://jqueryui.com/progressbar/ Manu 2013/1/31 Athneria, Mahendra > Hi All, > > I have to implement Progress bar in my project. I don't know whether > Progress Bar is a component in tapestry