Re: Deadlock on lazy services

2021-12-18 Thread Dimitris Zenios
Hi This is what i did to fix the problem as well even though is not the optimal solution On Fri, Dec 17, 2021, 15:48 Oliver Kaiser wrote: > On 12/14/2021 10:40 PM, Dimitris Zenios wrote: > > Hi all it seems there is a raise condition when realizing lazy loaded > > services.

Deadlock on lazy services

2021-12-14 Thread Dimitris Zenios
Hi all it seems there is a raise condition when realizing lazy loaded services. The race is between JustInTimeObjectCreator.obtainObjectFromCreator / ConcurrentBarrier and requires a shared service. When a proxy is instantiated JustInTimeObjectCreator.createObject is called which is synchronized.

Re: Tapestry examples page

2016-11-08 Thread Dimitris Zenios
Well done carlos.nice work On 8 Nov 2016 22:38, "françois facon" wrote: > Congratulations Carlos, your examples are very interesting. > Can't wait to discover your next use cases. > > Regards > > 2016-11-08 18:35 GMT+01:00 Carlos Montero Canabal < > carlosmonterocana...@gmail.com>: > > > Hi tape

Re: Deploying webapp on busy public server failing hard

2016-10-26 Thread Dimitris Zenios
I thing your best solution is what you described. Compile all less to css on building. On Tue, Oct 25, 2016 at 4:36 PM, Peter Hvass wrote: > Hello all, > > Sorry for the late response on this one! > > About the warmup page - thanks! I am using this now - it bypasses the > issues I was facing wi

Re: best way to rebind events after a zone rerenders

2016-09-07 Thread Dimitris Zenios
If using tapestry 5.4 the best way is to use dom.scanner javascript module On zone refresh dom elements are completely new so any javascript initializations you had done has to be redone On Tue, Sep 6, 2016 at 9:25 PM, Qbyte Consulting wrote: > Hi, > > My zone contents are losing their client s

Re: Comming from resources.triggerEvent / need to go to another page

2016-07-24 Thread Dimitris Zenios
uot;ShowDetailsViaBubble") private Object onShowDetailsViaBubble(long l) { return DetailUserNice.class; } You don't need to inject the page and use Pagerenderlinksource since you are not passing any context on that page. You can return the page class directly. Dimitris Zenios

Re: TLS termination proxy and Tapestry

2016-07-22 Thread Dimitris Zenios
Forgot to mention that i also have tapestry.security-enabled= false in my app setings On Fri, Jul 22, 2016 at 3:50 PM, Dimitris Zenios wrote: > This is a snippet of nginx configuration that proxies the request to > jetty on port 8080.Via this configuration i am able to have ssl and n

Re: TLS termination proxy and Tapestry

2016-07-22 Thread Dimitris Zenios
This is a snippet of nginx configuration that proxies the request to jetty on port 8080.Via this configuration i am able to have ssl and non ssl versions of the tapestry application.If i want to enforce only ssl version of tapestry i enforce it via nginx.Hope that was helpful location / {

Re: TLS termination proxy and Tapestry

2016-07-22 Thread Dimitris Zenios
When i am doing ssl out of the servlet container (eg jetty,apache etc) i always set secure enables to false. On 21 Jul 2016 12:07, "Svein-Erik Løken" wrote: > Using HAProxy or Apache HTTP Server as a TLS termination proxy I found > that setting X-Forwarded-Proto="https" in the header on the prox

Re: ANN: New Tapestry Book

2016-07-19 Thread Dimitris Zenios
Amazing.keep up the good work On 18 Jul 2016 20:53, "Rafael Bugajewski" wrote: > Great work, Barry. Thank you very much. I starred the project and will > take a deeper look at it when I’ll have some spare time in the evening. > > Rafael > > > > On 2016-18-07, at 03:04 PM, Barry Books wrote: > >

Re: Deploying webapp on busy public server failing hard

2016-07-08 Thread Dimitris Zenios
## Page Preloading It is now possible to pre-load pages at system startup time by making contributions to the new PagePreloader service. Pages can be pre-loaded only in development, only in production, never, or always. Quote from 5.4 release notes,Not sure if it will generate the js files at th

Re: Hiding FormFragment via javascript

2016-03-23 Thread Dimitris Zenios
hendrk what version of tapestry are you using? On 23 Mar 2016 16:00, "Hendrik Grewe" wrote: > Hi @ list! > > I have a loop within a Form containing a formfragment per row. > The FormFragment is displayed within a (bootstrap) modal dialog, which > is opened by a click of a button in the current Ro

Re: [ANNOUNCE] Apache Tapestry 5.4

2016-02-12 Thread Dimitris Zenios
I have been using tapestry 5 in more than 10 complex web applications with with no problem at all.Never had problems upgrading from one version to another except some minor changes. Its one of the best Java web frameworks I have ever used. On Fri, Feb 12, 2016 at 12:51 PM, Carlos Montero Canabal

Re: Customize vadation message for fields generated dynamically

2015-12-16 Thread Dimitris Zenios
actual id), then by * converting the actual id to a presentable string (for example, "userId" to "User Id"). */ @Parameter(defaultPrefix = BindingConstants.LITERAL) protected String label; Dimitris Zenios On Wed, Dec 16, 2015 at 5:39 PM, Robson Pires wrote: > Hi, > > I

Re: Automatically add an attribute to component

2015-12-16 Thread Dimitris Zenios
Hi You can create a mixin that adds the atttribute and apply it to all component via a worker and MutableComponentModel.addMixinClassName Dimitris Zenios On Wed, Dec 16, 2015 at 12:27 PM, Nathan Quirynen < nat...@pensionarchitects.be> wrote: > Hi, > > I have some use cases wher

Re: Is tapestry plastic incompatible with JEE specs?

2015-12-12 Thread Dimitris Zenios
HI Luca Arzeni Just for testing could you try with Tapestry 5.4-rc-1? Tapestry 5.4 bundles a newer asm version. Don't forget that tapestry plastic is a wrapper around asm Dimitris Zenios On Sat, Dec 12, 2015 at 7:06 PM, Luca Arzeni wrote: > Here you are: this is a test case that s

Re: HTTPS + tapestry-security

2015-12-12 Thread Dimitris Zenios
Dimitris Zenios On Sun, Dec 6, 2015 at 9:32 PM, Andreas Ernst wrote: > Hi, > > i got an Apache in Front how redirects http to https pages. > > This works fine if i use > > configuration.add(SymbolConstants.PRODUCTION_MODE, false); > > If i change this to true, URI does no

Re: Multiple domains, one webapp

2015-07-30 Thread Dimitris Zenios
I would definitely split it into two web applications with a common tapestry module.Any other way will result to a mess. On Thu, Jul 30, 2015 at 10:12 PM, Stephen Nutbrown wrote: > Hi, > > To cut a long story short, I have a website running using tapestry which > has two main areas, we will call

Re: Tapestry 5.3.7 - best way to customize Grid Pager

2015-06-03 Thread Dimitris Zenios
You can use tapestry 5.4 and ComponentOverride. Also tapestry 5.4 comes bundled with bootstrap and jquery On Wed, Jun 3, 2015 at 3:39 PM, Luca Arzeni wrote: > Hi, > I'm using Tapestry5 (5.3.7), and bootstrap for reponsive layout. > > I'using tapestry5 grid component, and I would linke to customi

Re: tapestry split button

2015-05-05 Thread Dimitris Zenios
good example for mixins. > Example you can use as usual and then assign the mixins if you > want it as dropdown button. > > Thanks. > > On Tue, May 5, 2015 at 4:14 PM, Dimitris Zenios > > wrote: > > > Why do you need a mixin for that.This is plain html there.What ex

Re: tapestry split button

2015-05-05 Thread Dimitris Zenios
s.html. > > Thanks. > > On Tue, May 5, 2015 at 4:00 PM, Dimitris Zenios > > wrote: > > > Hi > > > > By split button you mean bootstrap button groups? > > > > > > On Tue, May 5, 2015 at 9:28 AM, Chung Khanh Duy < > > chungkhanhduy1...@gm

Re: tapestry split button

2015-05-05 Thread Dimitris Zenios
Hi By split button you mean bootstrap button groups? On Tue, May 5, 2015 at 9:28 AM, Chung Khanh Duy wrote: > Hi experts, > > Do you know any example about mixins for split button for Tapestry ? I > appreciate. > > Thanks. >

Re: [T5.4 beta 28] Date and time picker

2015-05-04 Thread Dimitris Zenios
Also can you please update to latest tapestry 5.4-beta-31 I think there was a bug that looks like that and got fixed. On Mon, May 4, 2015 at 1:04 PM, Dimitris Zenios wrote: > Javascript is using dom.scanner function which should execute on every > zone change.Just like the DateField &

Re: [T5.4 beta 28] Date and time picker

2015-05-04 Thread Dimitris Zenios
gt; > > On 3 May 2015 at 15:59, Stephen Nutbrown wrote: > > >> Hi Dimitris, > > >> > > >> That's extremely kind and generous of you, thank you! I owe you a few > > >> beers, if you happen to have a paypal address hooked up to you

Re: [T5.4 beta 28] Date and time picker

2015-05-01 Thread Dimitris Zenios
For tapestry 5.4 i have been using this javascript library https://eonasdan.github.io/bootstrap-datetimepicker/ and a custom component extending AbstractField On Fri, May 1, 2015 at 1:15 PM, Stephen Nutbrown wrote: > Hi, > > I have been looking for a date + time picker for Tapestry. I'd like

Re: [T5.4] Problem with form fields in a loop

2015-04-30 Thread Dimitris Zenios
Also you dont need to build by hand.You can get it from apache staging repo apache-staging https://repository.apache.org/content/groups/staging/ On Thu, Apr 30, 2015 at 1:16 PM, Dimitris Zenios wrote: > There was also a bug for this >

Re: [T5.4] Problem with form fields in a loop

2015-04-30 Thread Dimitris Zenios
There was also a bug for this https://issues.apache.org/jira/browse/TAP5-2391 so please close your bug since its a duplicate and already fixed Dimitris Zenios On Thu, Apr 30, 2015 at 1:14 PM, Nicolas Bouillon wrote: > Indeed, i've built the latest beta tag (5.4-beta-31) and th

Re: [T5.4] Problem with form fields in a loop

2015-04-30 Thread Dimitris Zenios
This has been fixed in the latest snapshot.What version of 5.4 are you using? On Thu, Apr 30, 2015 at 11:49 AM, Nicolas Bouillon wrote: > I know the same field component is reused. I have used this kind of > structures (field in loop) extensively in a previous project on Tapestry > 5.3 without a

Re: DefaultRequestExceptionHandler not redirect xhr request to a secure link

2015-04-13 Thread Dimitris Zenios
sue that has to be fixed Thanks Dimitris Zenios On Mon, Apr 13, 2015 at 3:25 AM, George Christman wrote: > Thanks Kalle and yes I did try overriding the service with my own > implementation, however I must have been missing something some wheres > because the configuration always appeare

Re: Tapestry Upload MaxFileSize

2015-04-13 Thread Dimitris Zenios
Servlet. As for the max-size I didn't find any documentation specifying that MultiPartConfig will check for that setting and throw an exception before the file is completely uploaded Thanks Dimitris Zenios On Sun, Apr 12, 2015 at 12:19 AM, Harry Zhou wrote: > Hi Friends! > > I am

Re: Grid and initial sort mixin Tapestry 5.4-beta28

2015-04-09 Thread Dimitris Zenios
Not exactly because I said earlier if the Mixin has a @MixinAfter annotation then first rendering ignores the sorting. On Thu, Apr 9, 2015 at 4:57 AM, Lance Java wrote: > Does this help? > > http://stackoverflow.com/questions/18959365/tapestry-grid-default-sorting >

Re: SymbolConstants.SECURE_PAGE missing?

2015-04-08 Thread Dimitris Zenios
Hi SECURE_PAGE is part of MetaDataConstants not SymbolConstants What exactly are you trying to achieve? Thanks On Wed, Apr 8, 2015 at 10:22 PM, Michael Gentry wrote: > Hello, > > I was trying to inject this symbol value into one of our pages, but it > appears to not be present in SymbolConsta

Re: Startup service needs Request

2015-04-03 Thread Dimitris Zenios
constants on startup Dimitris Zenios On Fri, Apr 3, 2015 at 12:13 PM, TNO wrote: > Hi, > > I'm using Tapestry 5.3.7, and I'm trying to send mails at tapestry startup > application. > In these mails, I need the full url of the website to create dynamic > links. > &

Re: The active page name has not been specified

2015-03-31 Thread Dimitris Zenios
oing to have to dig deeper tomorrow to find the cause > of this issue. > > On Tue, Mar 31, 2015 at 4:25 PM, Dimitris Zenios < > dimitris.zen...@gmail.com> > wrote: > > > When you include a tynamo dependency do you exclude the tapestry-core and > > tapestry-ioc lik

Re: The active page name has not been specified

2015-03-31 Thread Dimitris Zenios
bmit-label} > data-dismiss="modal">${message:close-label} > > > > > > > > On Tue, Mar 31, 2015 at 11:19 PM, George Christman < > gchrist...@cardaddy.com> wrote: > >> An

Re: The active page name has not been specified

2015-03-31 Thread Dimitris Zenios
} On Tue, Mar 31, 2015 at 11:19 PM, George Christman wrote: > And your wrapping your form in a zone too? Sorry, I just want to be sure we > are doing everything the same. > > On Tue, Mar 31, 2015 at 4:05 PM, Dimitris Zenios < > dimitri

Re: The active page name has not been specified

2015-03-31 Thread Dimitris Zenios
gt; > submitting an ajax form. It happens every single time. > > > > On Tue, Mar 31, 2015 at 1:36 PM, George Christman < > gchrist...@cardaddy.com > > > > > wrote: > > > > > I'll test it in beta-28, but until that validation bug gets fixed, I >

Re: The active page name has not been specified

2015-03-31 Thread Dimitris Zenios
FYI just tested with 5.4-beta28 and I don't have such problem On Tue, Mar 31, 2015 at 5:38 PM, George Christman wrote: > Hey Kalle, just checking in with you to see if you happened to have anymore > info on this issue. > > On Wed, Mar 25, 2015 at 4:05 PM, George Christman > > wrote: > > > Thank

Re: Upgrading to 5.4 Beta 28

2015-03-30 Thread Dimitris Zenios
tapestry-yuicompressor is removed from tapestry 5.4 Try replacing it with tapestry-webresources Regards Dimitris Zenios On Mon, Mar 30, 2015 at 11:43 PM, john c wrote: > I am attempting to switch to Tapestry 5.4 Beta 28, with the Jumpstart app. > I modified the release version in pom.xm

Re: Dynamic Properties addition to the Grid

2015-03-30 Thread Dimitris Zenios
me in this case.how would we go about capturing the > "name property cell" when we are unsure about the name of it ? Can you > please show me an example ? > > Best Regards > Akhsay > On 30 Mar 2015 16:43, "Dimitris Zenios" wrote: > > > You can add as ma

Re: Dynamic Properties addition to the Grid

2015-03-30 Thread Dimitris Zenios
,like the way u have said or we can > just have mymodel.add("propertyname") and hijack name cell in the tml for > further actions. > > I havent given a try, just had a view looking into the approach. > > Regards > Akshay > On 30 Mar 2015 16:26, "Dimitris Ze

Re: Dynamic Properties addition to the Grid

2015-03-30 Thread Dimitris Zenios
try myModel.addEmpty("propertyName"); and in the tml class you can do ${value.propertyName} Regards Dimitris Zenios On Mon, Mar 30, 2015 at 4:54 PM, akshay wrote: > Hi All, > > > I am trying to add properties to the grid dynamically. Below I have > describ

Re: use template in property files?

2015-03-29 Thread Dimitris Zenios
Hi You can do something else. change your property to copyright=@2013 %s. All Rights Reserved and from Java class do messages.format("copyright","xyz company") messages is a Message catalogue instance.You can get that object via @Inject private Messages messages Dimitris Ze

Re: dynamic css id

2015-03-29 Thread Dimitris Zenios
Hi Then create a method in your java class public String getMyId() and return your id Dimitris Zenios On Sun, Mar 29, 2015 at 5:56 PM, Angelo Chen wrote: > Hi, > > Say I have a html like this: > > < div id="myid"> > > that id is fixed to '

Re: Grid and initial sort mixin Tapestry 5.4-beta28

2015-03-29 Thread Dimitris Zenios
Anyone? On Sat, Mar 28, 2015 at 11:40 AM, Dimitris Zenios wrote: > Hello everyone > > I have a problem with a mixin that sets the first column sorted when sort > constraints is empty. > > The problem goes like that > > Without Mixin after > > Mixin SetupRender

Grid and initial sort mixin Tapestry 5.4-beta28

2015-03-28 Thread Dimitris Zenios
er without sort constraints so even though I set up the sort constraints first rendering of the grid will go unsorted.Following renderings will be OK since sort constraints are persisted. Looking forwards for your comments Thanks Dimitris Zenios

Re: ServiceOverride help wanted

2015-01-03 Thread Dimitris Zenios
This is the way i do it and it works @Contribute(ServiceOverride.class) public static void setupApplicationServiceOverrides(MappedConfiguration configuration,@Local WebSecurityManager customAuthenticator) { configuration.add(WebSecurityManager.class, customAuthenticator); } On Sat, Jan 3, 2015 at

Re: [5.4.22] Overriding core css - bug?

2014-11-19 Thread Dimitris Zenios
anything the user wants Regards Dimitris Zenios On Wed, Oct 9, 2013 at 5:30 AM, Lenny Primak wrote: > Voted: https://issues.apache.org/jira/browse/TAP5-2197 > > On Oct 4, 2013, at 8:37 AM, Geoff Callender wrote: > > > Added to JIRA as TAP5-2197 - Overriding core css - bug? > &g

Re: Custom MessageSource

2014-09-01 Thread Dimitris Zenios
Figueiredo < thiag...@gmail.com> wrote: > On Mon, 01 Sep 2014 18:07:17 -0300, Dimitris Zenios < > dimitris.zen...@gmail.com> wrote: > > Hello everyone >> > > Hi! > > > I am trying to find ways in order to contribute custom message sources >> other than

Custom MessageSource

2014-09-01 Thread Dimitris Zenios
Hello everyone I am trying to find ways in order to contribute custom message sources other than properties file (Database for example).Is there an easy way to achieve that other than overriding ComponentMessagesSource service? I started by viewing the tapestry-core code and I found out that Com

Tapestry 5 eurodns

2014-03-13 Thread Dimitris Zenios
Just found out that tapestry 5 is been used to develop eurodns website. Maybe it can be put inside success stories http://wiki.apache.org/tapestry/SuccessStories

Re: Tapestry 5.4 Dojo as the Infrastructure Provider

2014-02-08 Thread Dimitris Zenios
Why do you want to get rid of the config?You can add/remove/ovveride the current config using javascriptSupport.addModuleConfigurationCallback On Sat, Feb 8, 2014 at 12:19 PM, Azudio Developer wrote: > Thanks Dragan. > > I've started to knock something up at > https://github.com/adamhenderson/t

Re: Override AssertSource

2014-01-31 Thread Dimitris Zenios
Create the assetSource inside bind method then inject it inside the contributeSerrviceOverride and instead of addInstance use plain add On Fri, Jan 31, 2014 at 7:43 PM, garz wrote: > With addInstance the exception is: > > java.lang.IllegalStateException: Construction of service 'ServiceOverrid

Re: kaptcha component reloading issues with Firefox

2014-01-24 Thread Dimitris Zenios
; setHeader calls or 2) use HttpServletResponse directly, or 3) change > the Response interface (a backward-incompatible API change, although > maybe worth doing, since I guess very few people would be affected). > > On Fri, Jan 24, 2014 at 2:56 PM, Dimitris Zenios > wrote: > &g

Re: kaptcha component reloading issues with Firefox

2014-01-24 Thread Dimitris Zenios
wse/TAP5-2275 > > > On Fri, Jan 24, 2014 at 8:46 AM, Dimitris Zenios > wrote: > > > You should start by writing a jira bug report > > On 23 Jan 2014 00:09, "Ilya Obshadko" wrote: > > > > > So I have discussed the issue with Kaptcha library author

Re: kaptcha component reloading issues with Firefox

2014-01-23 Thread Dimitris Zenios
You should start by writing a jira bug report On 23 Jan 2014 00:09, "Ilya Obshadko" wrote: > So I have discussed the issue with Kaptcha library author and found out > that the problem is, in fact, with Tapestry implementation itself. > > https://code.google.com/p/kaptcha/issues/detail?id=72 > > T

Re: [5.4-beta-2] Two JavaScript Errors - Quick Fixes

2014-01-23 Thread Dimitris Zenios
Until this is fixed a quick tip. You dont have to create custom jars.just create a new js file with the same filename as the one you want to fix and place it on your meta-inf using the same folder structure as the originall Dimitris Zenios On 23 Jan 2014 10:26, "Peter Hvass" wrote: &

Re: override t:formdata when validation has error

2013-12-16 Thread Dimitris Zenios
ml > > looks like validate -> success -> submit > > > On Mon, Dec 16, 2013 at 3:24 AM, Dimitris Zenios > wrote: > > > onValidate -> onSubmit -> Onsuccess ( Only if validate does not have > errors > > ) > > > > > > On Sun, Dec

Re: override t:formdata when validation has error

2013-12-15 Thread Dimitris Zenios
onValidate -> onSubmit -> Onsuccess ( Only if validate does not have errors ) On Sun, Dec 15, 2013 at 3:49 PM, Chung Khanh Duy < chungkhanhduy1...@gmail.com> wrote: > Hi Thiago, > > Thanks for your quick response. But in my application, we had: > > onValidate...() > > onSuccess() > > You meant t

Re: Client-side email validation not working

2013-12-03 Thread Dimitris Zenios
Tapestry 5.4 implements client side email validation along with server side On Tue, Dec 3, 2013 at 7:14 PM, Jan Fryblik wrote: > On Tue, 03 Dec 2013 18:07:10 +0100, Thiago H de Paula Figueiredo < > thiag...@gmail.com> wrote: > > On Wed, 27 Nov 2013 17:36:05 -0200, Lidija Dolinar >> wrote: >> >

Re: grid is showing this column -> _persistence Should Refresh Fetch Group

2013-11-28 Thread Dimitris Zenios
I had the same thing.The property is added by eclipselink weaving.The way i did it was to create a mixin that excludes the column from the grid and apply it to all the grids through a worker. On Thu, Nov 28, 2013 at 10:56 AM, Lance Java wrote: > If you want to handle this globally, you could ove

Re: Apache Tapestry 5.4-alpha-25 preview release

2013-11-11 Thread Dimitris Zenios
Hello everyone. It looks that something changed between alpha 23 and alpha 25 regarding stacks and modules.If i add a module to a stack and then import this stack in a page,the module will not be executed? I have to call require on the module seperately? Is that correct? If yes what happens to a

Re: Does a Tap service method exist similar to a SelectModelFactory for use in autocompletes.

2013-10-16 Thread Dimitris Zenios
What about these? return F.flow(ldapCache.findAllLDAPUsers(keyword)).map(new Mapper() { public String map(LDAPProfile element) { return element.getName(); } }).toList(); On Wed, Oct 16, 2013 at 8:49 PM, George Christman wrote: > I'm wondering if there is already a tapestry servi

PageRenderLinkSource inside periodic executor

2013-10-14 Thread Dimitris Zenios
dont know if this is the preferred way Any solution? Best Regards Dimitris Zenios

Re: How do I @Import a core css library?

2013-09-13 Thread Dimitris Zenios
If you put your assets in META-INF/assets/css/autocomplete.css you will do @Import(stylesheet="css/autocomplete.css") On Fri, Sep 13, 2013 at 4:06 AM, George Christman wrote: > Hello, I'm using t5.4.20 and I'm working on building a custom autocomplete > component and I'm looking to import the au

Re: Excluding ROOT localization

2013-09-07 Thread Dimitris Zenios
If you are referring to remove blank option from select component then t: blankOption="*NEVER * " would be ok. On Sat, Sep 7, 2013 at 6:19 PM, Nomen Nominus wrote: > Hi. I have setup select loca

RE: [T5.4] Replace Datepicker with Bootstrap Datepicker?

2013-09-07 Thread Dimitris Zenios
+1 for that.i am not sure though if bootstrap datepicker is compatible with bootstrap 3 Sent from my Windows Phone From: Lenny Primak Sent: 7/9/2013 4:25 To: Tapestry users Subject: [T5.4] Replace Datepicker with Bootstrap Datepicker? I have always had problems with the Tapestry's datepicker. It'

Re: [T5.4] more Datepicker issues...

2013-09-05 Thread Dimitris Zenios
Datepicker does not depend on prototype from what i remember.Did you add this to your appmodule? @Contribute(Compatibility.class) public static void disableScriptaculous(MappedConfiguration configuration) { configuration.add(Trait.SCRIPTACULOUS, false); configuration.ad

Re: [T5.4] default Datepicker issues

2013-09-05 Thread Dimitris Zenios
Nope.There is no way to switch to Jquery UI Datepicker from tapestry.What you can do though is since Datefield is just an input box, you can override the tapestries datefield javascript file (t5/core/datefield) and create your own that uses jquery ui datepicker.I did that once to use bootstrap-date

Re: What do we need to learn to use Tapestry 5.4 ?

2013-08-17 Thread Dimitris Zenios
Muhammad Gelbana have a look at this http://tapestry.apache.org/release-notes-54.html Martin tapestry 5.4 is planned to be released soon.From what I see there are not many things left to be done.Right now its in alpha 14 and most probably it will go beta state very soon. On Sun, Aug 18, 2013 at

Re: Proposal for a new book: Mastering Apache Tapestry

2013-08-05 Thread Dimitris Zenios
I would love to see a book for tapestry-ioc,plastic only.And how it can integrate with other forms of application and compete with spring etc etc On Tue, Aug 6, 2013 at 12:20 AM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Mon, 05 Aug 2013 17:13:54 -0300, Thiago H de Paula Fig

Re: Ckeditor and tapestry 5.4

2013-08-05 Thread Dimitris Zenios
Also Yunhua Sang module dispatcher only support .js files.Ckeditor needs to load css files alsos On Tue, Aug 6, 2013 at 12:30 AM, Dimitris Zenios wrote: > There is a slight problem.I am using a require.js module to load > ckeditor.I have ckeditor-library as a shim and a ckeditor modul

Re: Ckeditor and tapestry 5.4

2013-08-05 Thread Dimitris Zenios
he example above, the module name is ckeditor. > > Regards, > Yunhua > > > > > > > > > > On Mon, Aug 5, 2013 at 2:01 PM, Dimitris Zenios > wrote: > > > Hello everybody.I am trying to integrate tapestry 5.4 and ckeditor. > > Ckeditor loads a

Ckeditor and tapestry 5.4

2013-08-05 Thread Dimitris Zenios
Hello everybody.I am trying to integrate tapestry 5.4 and ckeditor. Ckeditor loads all its dependencies asynchronously but not through require.js. How can i expose ckeditors folder for the to the client in order to let ckeditor.js load its resources from? Regards Dimitris Zenios

Bootstrap 3 and tapestry 5.4

2013-07-27 Thread Dimitris Zenios
Hi everyone Bootstrap 3 RC1 is released and get bootstrap page redirect to download the new version instead of the old (2.3.2) As a suggestion maybe it will be better to upgrade the bundled bootstrap inside tapestry 5.4 to version 3 before a final release Regards Dimitris Zenios

Re: 5.4-alpha-11 preview release

2013-07-18 Thread Dimitris Zenios
I have been using tapestry 5.4 since alpha 3.Its quite stable.The only problem i have found until now is that sometimes when refreshing pages to frequently javascript does not work with random errors of undefined.Even after page loads ok.It looks like that require.js is stopped while downloading a

Re: [T5.4] Weird behavior with CSS files

2013-06-26 Thread Dimitris Zenios
Check out https://issues.apache.org/jira/browse/TAP5-2106 On Thu, Jun 27, 2013 at 4:45 AM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Wed, 26 Jun 2013 04:38:58 -0300, Serge Eby wrote: > > Hi, >> > > Hi! > > I am still planning an upgrade to 5.4 while playing with the lates

Re: Tapestry JPA

2013-06-09 Thread Dimitris Zenios
You car write your own advisor on top of commit after and if commit after didnt throw an exception you can call your success listeners. On Sun, Jun 9, 2013 at 12:02 AM, John wrote: > Hi, > > I want to audit the database updates in some DAO classes I am using from > my pages. > > Obviously I'd o

Re: is openJDK compatible with Tapestry 5?

2013-05-19 Thread Dimitris Zenios
I never had problems running tapestry 5 and openjdk On Sun, May 19, 2013 at 6:52 PM, Angelo Chen wrote: > Hi, > > I got an app running well in : > ava version "1.6.0_21" > Java(TM) SE Runtime Environment (build 1.6.0_21-b06) > Java HotSpot(TM) 64-Bit Server VM (build 17.0-b16, mixed mode) > > no

Re: Possible bug in generated client ids

2012-11-04 Thread Dimitris Zenios
Done https://issues.apache.org/jira/browse/TAP5-2025 Please vote the bug On Sat, Nov 3, 2012 at 7:38 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Sat, 03 Nov 2012 12:47:51 -0200, Dimitris Zenios < > dimitris.zen...@gmail.com> wrote: > > I managed

Re: Possible bug in generated client ids

2012-11-03 Thread Dimitris Zenios
progressive display we have this effect. On Sat, Nov 3, 2012 at 4:12 PM, Dimitris Zenios wrote: > Since each grid is inPlace then sorting links become an ajax link that is > connected with the zone through updatezoneonevent javascript function.If we > have two elements with the same id

Re: Possible bug in generated client ids

2012-11-03 Thread Dimitris Zenios
Figueiredo < thiag...@gmail.com> wrote: > On Sat, 03 Nov 2012 07:43:52 -0200, Dimitris Zenios < > dimitris.zen...@gmail.com> wrote: > > Hi everyone. >> > > Hi! > > As far as I can remember, this problem is caused by Grid using @Persist in > the field t

Re: breadcrumb trail component

2012-10-29 Thread Dimitris Zenios
https://bitbucket.org/zenios/tapestry-zbreadcrumbs/wiki/Home On Mon, Oct 29, 2012 at 5:13 PM, Chris Cureau wrote: > https://github.com/argoyle/tapestry-breadcrumbs > > On Mon, Oct 29, 2012 at 10:10 AM, John wrote: > >> Hi, >> >> Is there a component to display a breadcrumb trail at the top of a

Get component in overrides

2012-09-11 Thread Dimitris Zenios
Is there a way to get the current component inside block overrides?I would like to show something different if its a grid component.Injecting componentResouirces and getting component returns NULL.Any other way? - To unsubscribe,

Re: + zone

2012-08-07 Thread Dimitris Zenios
hould be loaded through ajax calls. On Tue, Aug 7, 2012 at 4:44 AM, Thiago H de Paula Figueiredo wrote: > On Mon, 06 Aug 2012 19:36:17 -0300, Dimitris Zenios > wrote: > >> Any example or a hint please? > > > Layout.tml: > > > > > > >> >>

Re: + zone

2012-08-06 Thread Dimitris Zenios
Any example or a hint please? On Tue, Aug 7, 2012 at 12:13 AM, Thiago H de Paula Figueiredo wrote: > On Mon, 06 Aug 2012 16:03:44 -0300, Dimitris Zenios > wrote: > >> Is there a way to have a layout component and all its body would be >> rendered using zone? > > >

+ zone

2012-08-06 Thread Dimitris Zenios
Is there a way to have a layout component and all its body would be rendered using zone?Just like google plus does when you change between pages. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional comma

Re: Tapestry jodatime module (based on jumpstart) ?

2012-07-06 Thread Dimitris Zenios
e the source and maybe write some tests. > >In either case, whatever can get us quicker to a tynamo-jodatime module > is what I want to do. > > Cheers, > > Alex K > > On Fri, Jul 6, 2012 at 7:01 AM, Dimitris Zenios > wrote: > >> I can also be a part of

Re: Tapestry jodatime module (based on jumpstart) ?

2012-07-06 Thread Dimitris Zenios
I can also be a part of tapestry-jodatime if needed.We have jodatime integration into our tapestry application.All we had to do is contribute beanblock source and some coercers.Let me know if you need the source code. Regards Dimitris Zenios On Fri, Jul 6, 2012 at 1:37 PM, Alex Kotchnev wrote

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
ted. Locally, it is running. > > My maven knowledge is minimalistic. > > 1. why was 0.0.3-SNAPSHOT generated? > 2. can i deploy my project now without having to take care about 0.0.3? > > > > 2012/6/12 Dimitris Zenios [via Tapestry] < > ml-node+s1045711n5713820...@

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
Did you do steps 1,2,3? On Tue, Jun 12, 2012 at 10:24 PM, sommeralex wrote: > Hi! > > If i am changing to 0.0.3-Snapshot it keeps telling: > > Missing artifact org.oscy:tapestry-zbreadcrumbs:jar:0.0.3-SNAPSHOT > > > -- > View this message in context: > http://tapestry.1045711.n5.nabble.com/Bread

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
If i am not wrong /src/main/webapp is context: and it should be context:css/main.css On Tue, Jun 12, 2012 at 10:03 PM, sommeralex wrote: > i am also trying to implement my own style css, but whatever path i am > writing in as parameter, fails. > > path of my CSS: > /Users/alexandersommer/git/Airw

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
1.Checkout the code with the below command "git clone https://bitbucket.org/zenios/tapestry-zbreadcrumbs.git"; 2.Do any changes you want to the project (src will be inside tapestry-zbreadcrumbs where you cloned) 3.Issue "mvn clean package install" inside the folder 4.Change your maven dependency fr

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
We will have to wait for sommeralex to Test it but from what he told me its working localy without changes but not when project is online.Weird On Tue, Jun 12, 2012 at 4:42 PM, Lance Java wrote: > Correct. So if my suggestion works, I think we've found a bug > > -- > View this message in context:

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
Thats what i read and implemented it that way.Since InjectDefaultStylesheet is after DocumentLinker and ZBreadCrumbsDefaultStylesheet is after InjectDefaultStylesheet then ZBreadCrumbsDefaultStylesheet is after DocumentLinker. Correct? On Tue, Jun 12, 2012 at 4:19 PM, Lance Java wrote: > I was

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
Lance is there a possibility ZBreadCrumbsDefaultStylesheet to be added before:DocumentLinker since its added after:InjectDefaultStylesheet which in turn is added after:DocumentLinker ? On Tue, Jun 12, 2012 at 3:27 PM, sommeralex wrote: > ok, i will try it in the evening and let you know! > > THX!

Re: BreadCrumbsModule error

2012-06-12 Thread Dimitris Zenios
Hi lance just to help a bit more here is the source of breadcrumbs public void contributeMarkupRenderer(OrderedConfiguration configuration, final Environment environment, @Path("${zbreadcrumbs-default-stylesheet}") final Asset defaultStylesheet) { MarkupRendererFilter injectD

Re: configuring

2012-06-10 Thread Dimitris Zenios
You are welcome On Sun, Jun 10, 2012 at 10:49 PM, sommeralex wrote: > thx very much, did this already and is working. > > 2012/6/10 Dimitris Zenios [via Tapestry] < > ml-node+s1045711n5713749...@n5.nabble.com> > >> Repos synced.You can download 0.0.2 version from mave

Re: configuring

2012-06-10 Thread Dimitris Zenios
Repos synced.You can download 0.0.2 version from maven central On Sun, Jun 10, 2012 at 12:59 PM, Dimitris Zenios wrote: > Fixed the bug and released 0.0.2 version.We will have to wait for > maven central to sync with sonatype in order to be able to download > 0.0.2 version > > &

Re: configuring

2012-06-10 Thread Dimitris Zenios
Fixed the bug and released 0.0.2 version.We will have to wait for maven central to sync with sonatype in order to be able to download 0.0.2 version On Sun, Jun 10, 2012 at 12:32 PM, Dimitris Zenios wrote: > Hi > > You can override the css classes as Taha said and you can also >

  1   2   >