[Tacos-devel] Making TablePages Links using TableView

2006-10-18 Thread Naresh
Hi all, I am making a search in database and listing results in a tableview.But as tablepages links will refresh entire page, i need to code explicictly 4 tablepages. I tried AjaxLinkSubmit of tacos but i found when i click on link The Locahost:8080 main page of tomcat displaying. I tried e

Re: [Tacos-devel] Tacos-devel Digest, Vol 5, Issue 17

2006-10-18 Thread Balakrishnan Ramaswamy
Hi kiuma, Thanks for the immediate reply and nice to near that your are working on such feature. Could you please post approx date for making it workable? -Bala - Message: 3 Date: Tue, 17 Oct 2006 16:52:40 +0200 From: "Andrea Chiumenti" <[EMAIL PROTECTED]> Subject:

[Tacos-devel] tacos async requests and https incompatibilities

2006-10-18 Thread Sam Gendler
I've got a test server which is behind a reverse proxy which is handling https. As a result, Ajax requests are being requested with http:// instead of https:// which is breaking things. I assume this is because the reverse proxy is terminating the https session and sending a plain http request to

Re: [Tacos-devel] VIgAGRA

2006-10-18 Thread Daniel Tabuenca
I think we need file a bug about this. The smoking pit iof crumpled in jumble has been plaguing Tacos since beta2. Is there a workaround to rendering that occours earlier in the session or is this really probably just caused by drugs? On 10/18/06, Costantino Mirarchi <[EMAIL PROTECTED]> wrote: >

Re: [Tacos-devel] Tapestry JS Initialization - suspicions and theories - please validate!!

2006-10-18 Thread Jesse Kuhnert
I didn't even think about it, but this could probably be made easier by using a friendlier context during those evals..Instead of eval("js string") you can also use eval(context, "js string"). Presumably the context in this case should be window I guess? eval(window, "jsstring") ? Something like th

Re: [Tacos-devel] Tapestry JS Initialization - suspicions and theories - please validate!!

2006-10-18 Thread Karthik N
A thought is this worth putting in the tacos FAQ?   Took us about a day to figure what was going on!!On 10/18/06, Karthik N < [EMAIL PROTECTED]> wrote:Hi Andy,The approach we are going with is similar to what you suggested, and it solves our problems. i.e.Instead ofvar ${blah} = new Blah();usedocu

Re: [Tacos-devel] Tapestry JS Initialization - suspicions and theories - please validate!!

2006-10-18 Thread Karthik N
Hi Andy,The approach we are going with is similar to what you suggested, and it solves our problems. i.e.Instead ofvar ${blah} = new Blah();usedocument.${blah} = new Blah();Just wanted to confirm that our hunch was right, which you have validated. Thanks!! Karthik. -

Re: [Tacos-devel] Tapestry JS Initialization - suspicions and theories - please validate!!

2006-10-18 Thread andyhot
You're correct in all. If a refreshed component does produce js, we must include and execute it. Otherwise, we wouldn't be able to show components (that didn't previously exist) that result from an ajax request. If you don't like this, there's a way to disable executing script after an ajax resp

[Tacos-devel] Tapestry JS Initialization - suspicions and theories - please validate!!

2006-10-18 Thread Karthik N
We have initializion _javascript_ code in our .script file like this:    var ${blah} = new Blah();   Also in our HTML we have a way to connect to ${blah}.  I've left those details out for simplicity. At the end of the day the HTML snippets in the browser are like:
var blah = new Blah();
The s