Re: JQuery Datatable Bind Mixin

2013-09-04 Thread john c
bind.callback="function(event,ui,u) {u.addContext(event.target.parentNode.childNodes[3].innerHTML);}" From: Thiago H de Paula Figueiredo To: Tapestry users Sent: Wednesday, 4 September 2013 7:45 AM Subject: Re: JQuery Datatable Bind Mixin On Wed, 04 Sep 2

Re: [5.4] LinkSubmit Client-side Validation Broken

2013-09-04 Thread Boris Horvat
I use the last stable version On Wed, Sep 4, 2013 at 9:37 PM, Eugen wrote: > Hi, > For me the client side validation by LinkSubmit also does not work. I use > the last version of tapestry - 5.4-alpha-16 > > > Eugen > > > 2013/9/4 Boris Horvat > > > For me everything works as it should > > > >

Re: [5.4] LinkSubmit Client-side Validation Broken

2013-09-04 Thread Eugen
Hi, For me the client side validation by LinkSubmit also does not work. I use the last version of tapestry - 5.4-alpha-16 Eugen 2013/9/4 Boris Horvat > For me everything works as it should > > > On Wed, Sep 4, 2013 at 12:08 PM, Peter Hvass wrote: > > > Hello, > > > > > > Just wanted to follo

Re: [5.4] LinkSubmit Client-side Validation Broken

2013-09-04 Thread Boris Horvat
For me everything works as it should On Wed, Sep 4, 2013 at 12:08 PM, Peter Hvass wrote: > Hello, > > > Just wanted to follow up on this; we're still experiencing this issue, > wondering if anyone has a moment to > try and reproduce this on their end too? > > > Thanks, > Peter > > - Origina

Re: [5.4] IE8, RequireJS Error: required: "JSON" is Undefined

2013-09-04 Thread Kalle Korhonen
The typical way to include the shiv is with the conditional comments that are IE only (http://webdesign.about.com/cs/htmltags/a/aacommentsie.htm). Kalle On Wed, Sep 4, 2013 at 10:46 AM, Howard Lewis Ship wrote: > This should probably go into the main code as well; possibly with a > compatibili

Re: Book proposal withdrawn :-(

2013-09-04 Thread Thiago H de Paula Figueiredo
On Tue, 03 Sep 2013 10:23:56 -0300, Steve wrote: Hi Thiago, Hi! I'm sorry to hear about the withdrawal of the book proposal, and it is perfectly understandable that you have bills to pay and so working on it full time instead of a regular paying job may not be feasible for you. Having follo

Re: [5.4] IE8, RequireJS Error: required: "JSON" is Undefined

2013-09-04 Thread Howard Lewis Ship
This should probably go into the main code as well; possibly with a compatibility code to make it easy to turn off for users that don't need IE8 support (i.e., so as to streamline their apps in modern browsers). On Wed, Sep 4, 2013 at 8:00 AM, Peter Hvass wrote: > Hello, > > > Just a heads up i

Re: [T5.4 Alpha-15] constructAssetPath() changes

2013-09-04 Thread Howard Lewis Ship
StreamableResource is a kind of wrapper around Resource that includes additional information needed to generate asset URLs and a bunch of other related concerns. There's a StreamableResourceSource service. Oops, that's unfortunate; you'll need the internal ResourceChangeTracker service (which imp

Re: Tapestry Server Push/Web Socket/Comet implementation

2013-09-04 Thread Lance Java
I haven't done much research into Atmosphere… I found the docs to be quite cryptic and couldn't quickly find what I wanted. tapestry-cometd relies on a few concepts, If atmosphere has these same concepts then the switch will be easy, if not I guess it will be more difficult. 1. A Push Session - A

Re: Tapestry Server Push/Web Socket/Comet implementation

2013-09-04 Thread Norman Franke
Lance, Interesting timing. I'm now also in need of a push solution. I did try tapestry-cometd and it is very nice. As noted, I was wanting to use Atmosphere for the greatly simplified Javascript support and the support of multiple protocols. I was thinking about modifying tapestry-cometd to u

[5.4] IE8, RequireJS Error: required: "JSON" is Undefined

2013-09-04 Thread Peter Hvass
Hello, Just a heads up in case you're playing with 5.4 and running into errors like this; we had to conditionally include an implementation of various JSON utilities to get IE8 working. We have also added respond.js and html5shiv to keep bootstrap 3 happy. We used; http://bestiejs.github

Re: Tapestry Server Push/Web Socket/Comet implementation

2013-09-04 Thread Kalle Korhonen
On Wed, Sep 4, 2013 at 12:43 AM, Lance Java wrote: > provide this module myself in the fuure. As with the other tapestry > comitters, I have a day job and a social life to juggle with contributing > to open source. For the moment your options are to use tapestry-cometd or > I thought this is the

Re: Lightweight Tapestry5 Design/Code Switch plugin for Eclipse

2013-09-04 Thread Thiago H de Paula Figueiredo
I'm using it and I love it! It has one simple but very useful function which is very well implemented. Thank you very much, Dmitry! 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 wh

Re: Autocomplete Mixin with bootstrap3

2013-09-04 Thread Thiago H de Paula Figueiredo
On Wed, 04 Sep 2013 09:17:32 -0300, Eugen wrote: ups... :P i uploaded the image to: http://imagesup.net/?di=913782968996 Yeah, definitely CSS. Please file a JIRA for that. Meanwhile, you can add some CSS yourself to get it to look good. -- Thiago H. de Paula Figueiredo --

Re: Autocomplete Mixin with bootstrap3

2013-09-04 Thread Eugen
ups... i uploaded the image to: http://imagesup.net/?di=913782968996 Thanks 2013/9/4 Thiago H de Paula Figueiredo > ** > On Wed, 04 Sep 2013 04:57:43 -0300, Eugen wrote: > > Hi all, > > > Hi! > > a have a layout problem with an TextField decorated with Autocomplete > mixin. > The .tml: >

Re: Autocomplete Mixin with bootstrap3

2013-09-04 Thread Thiago H de Paula Figueiredo
On Wed, 04 Sep 2013 04:57:43 -0300, Eugen wrote:Hi all,Hi!a have a layout problem with an TextField decorated with Autocomplete mixin.The .tml:                           State                                          Country                        The mixin is working fine

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread Thiago H de Paula Figueiredo
On Wed, 04 Sep 2013 02:24:45 -0300, john c wrote: bind.callback="function(event,ui,u) {u.addContext(${currRow.fileID}); bind.callback="function(event,ui,u) {u.addContext(currRow.fileID); But it doesn't work. currRow is Null. That's the expected result. You're adding a callback, which will be

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread Barry Books
I don't really know how the data table works but I would guess it's a property off the ui parameter that you want. On Wed, Sep 4, 2013 at 12:24 AM, john c wrote: > Ok I removed bind.context=".." altogether, and added: > > bind.callback="function(event,ui,u) {u.addContext("Your Value"); > > > I

Re: [5.4] LinkSubmit Client-side Validation Broken

2013-09-04 Thread Peter Hvass
Hello, Just wanted to follow up on this; we're still experiencing this issue, wondering if anyone has a moment to try and reproduce this on their end too? Thanks, Peter - Original Message - From: "Peter Hvass" To: "Tapestry users" Sent: Thursday, August 29, 2013 4:02:03 PM

nested jquery.tabs

2013-09-04 Thread John
when I click on the tab_clients the word Clients displays but the inner component is not rendered whereas the tab_calendar is fine - why is that? Client Relationship Management

Re: JQuery Datatable Bind Mixin

2013-09-04 Thread Nourredine K.
Hi, > My datatable is set to ajax mode (t:mode="true"). After searching the forums > it says I need @Environmental on the row variable. Added that then got other > errors. FYI, in last tapestry5-jquery release, there's no more need to use @Environmental on the row (see https://github.com/got5/

Autocomplete Mixin with bootstrap3

2013-09-04 Thread Eugen
Hi all, a have a layout problem with an TextField decorated with Autocomplete mixin. The .tml: State Country The mixin is working fine, but follow layout is produced: [image: Встро

Re: Tapestry Server Push/Web Socket/Comet implementation

2013-09-04 Thread Lance Java
Hi Ben, Yes, tapestry-cometd is my creation… have you actually given it a go? Is there something you need it to do that it can't? I'm interested to hear your use case and if there's something that tapestry-cometd can't do, I can help you out. I'll give you a bit of a history lesson on how it evol