Separate translation language and locale for date formatting possible?

2013-01-21 Thread Markus Rau
Hello, I'm creating a simple CRUD webapp for internal use in a German team, which has several members who speak only English. The formatting of dates and numbers should conform to java's german Locale("de"), which everyone in the team understands and expects. However, if i set the SymbolConst

Re: [ANN] JumpStart gets jQuery DataTables example

2013-01-21 Thread mwrohde
Emmanuel DEMEY wrote > . . . . > But you can also use the ajax mode, and when the user will change the > displayed page, send an ajax request, and update the datatable with the > next set of datas. > . . . . I am having a devil of a time getting this to work. I'm attaching probably too much code

Re: datatable ajax with new column

2013-01-21 Thread rosecorp
Ok Guys, I have fixed it OverrideDataTableModel: /** * methdo returning the desired data */ public JSONObject getResponse(GridDataSource source){ response.put("sEcho", request.getParameter(DataTableConstants.ECHO));

Re: Tapestry performance

2013-01-21 Thread Thiago H de Paula Figueiredo
On Mon, 21 Jan 2013 17:52:12 -0200, Lenny Primak wrote: I'm pretty sure tapestry would blow JSF out of the water, just due to the architecture differences. As far as JSP, it is very hard to beat because it compiles directly to java servlet code. I don't think so, as the generated Java se

Re: Tapestry performance

2013-01-21 Thread Lenny Primak
I'm pretty sure tapestry would blow JSF out of the water, just due to the architecture differences. As far as JSP, it is very hard to beat because it compiles directly to java servlet code. On Jan 21, 2013, at 11:51 AM, "John" wrote: > I see a chart comparing some framework performance with

Re: datatable ajax with new column

2013-01-21 Thread rosecorp
Hi Manu, You were partially right I think :). It's true you don't have to override data model, but if you try to ad custom column like you are doing in your example for instance any action button than it fails in default data model throwing null pointer exception. Any suggestions? -- View this

Re: Tapestry performance

2013-01-21 Thread John
I see a chart comparing some framework performance with Tapestry doing very well, but I did not see JSF on the chart. Does anyone know how JSF compares to Tapestry? Would it's performance be comparable to JSP? John - Original Message - From: Bob Harner To: Tapestry users Sent

Re: T5.3 Select Component onValueChanged never fired

2013-01-21 Thread nquirynen
Did you use the zone parameter for your select? Here you find the documentation with an example: http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/Select.html Could

T5.3 Select Component onValueChanged never fired

2013-01-21 Thread wesleywj2
hi, i recently implemented the country and state/province select component where select particular country will load the state/province based on that country. The problem is that when i changed the Value of select in country component, the onValueChanged method never fired on server side. i put so

Re: Tapestry performance

2013-01-21 Thread Borut BolĨina
Hi, great page you have created! You can add some possible solutions, like using datagrid session management. One possible solution is to use http://www.hazelcast.com/docs/2.5/manual/single_html/#HttpSessionClustering. This is the technique we will be using. -bob 2013/1/20 Bob Harner > Hello

Re: datatable ajax with new column

2013-01-21 Thread Emmanuel DEMEY
Normally, with the current SNAPSHOT, you do not have to override the DataTableModel model. But I am not sure. can you test it ? if it does not work, I will provide a new sample. Manu 2013/1/20 rosecorp > Hello All, > > I am using datatables component in similar way which was presented here: > >