Re: [Tacos-devel] tacos:Palette buttons don't work but double-click does
cos/tacos-core/4.0.1-SNAPSHOT/Michael Waluk wrote: > Thanks for trying to help Andy. It won't work in IE6 and FireFox> 1.5. The> difference between our pages is that the Palette isn't originally on the> page for me. I have a wizard-like page and the Palette appears on the > 2
Re: [Tacos-devel] tacos:Palette buttons don't work but double-click does
Thanks for trying to help Andy. It won't work in IE6 and FireFox 1.5. The difference between our pages is that the Palette isn't originally on the page for me. I have a wizard-like page and the Palette appears on the 2nd "step/page". I had considered having the Palette loaded but hidden initial
[Tacos-devel] tacos:Palette buttons don't work but double-click does
Hi, I'm refreshing (with ajaxsubmt) a div with an AjaxForm that uses the tacos:Palette. For some reason double-clicking the items in the Palette works properly, but clicking the buttons causes an js error "select_[base-name] not defined". They both try to call the same functions - named lik
Re: [Tacos-devel] direct parameter
oblem with forwarding that I haven't thought of though. I really hope it makes it into Tapestry 4.1, but it sounds like that might be difficult. Thanks again,Michael On 4/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: From Michael Waluk <[EMAIL PROTECTED]>:> Hi,> It
Re: [Tacos-devel] direct parameter
Hi, It seems like DojoResponseBuilder's updateComponentsDirect method could be changed to avoid calling render on unecessary components (it is doing so with the NullWriter now). For example, if checkComponentContainers would return null for components that don't have PartialForBean containers it
[Tacos-devel] AjaxWebRequest.AJAX_REQUEST not set into cycle with AjaxForm submit
Hi, I haven't dug too deep on this but noticed that when a component is rendered in response to an AjaxDirectLink the AjaxWebRequest is found in the cycle, but it seems to disappear when submitting an AjaxForm. I know it is set into the cycle in AjaxDirectServiceImpl's service either way, but f
[Tacos-devel] List of widgetIds exceeding the URL limit
Hi, I'm using beta-1 so this may be a non-issue as I haven't pulled from source lately. The function "tacos.defaultLinkAction" sends this data to the server which is set into the visibleWidgets property of the AjaxWebRequest. kwArgs["content"]["widgetids"] = dojo.widget.manager.widgetIds.joi
Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?
emit events to anyone listening..Then instead of passing in updateObject to everything you just add a dojo call like this: dojo.event.connect(tacos, "onAjaxUpdate", doSomething(event) { });I think this model fits in nicely with how the eclipse rcp semantics work as well. Does everyone like
Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?
Hi Jesse, What Cosmin would like (I think) is to be able to make a call to a _javascript_ function BEFORE the ajax call is made. That is a good time to put up a "processing" or "loading" message, etc. I think what tacos provides (in alpha-7) for entry points in an udpateObject is - beforeAjaxU
Re: [Tacos-devel] beta-1 almost ready to release
Hi, I've lost track - but is this for Tapestry 4.0 or for a future 4.1? If for 4.1, will there be any further releases for 4.0 or was the alpha-7 the last one? Thanks! - Michael On 1/31/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: I would go ahead and apply the fixes (hopefully the new re
Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?
ds are called . . .Is there an example of it's usage in the Demo maybe , or can anybody shed some light on this process ?ThanksCosminOn 2/1/06, Michael Waluk <[EMAIL PROTECTED]> wrote:> Hi Cosmin,>> Isn't that what the updateObject is for? Your updateObject's > beforeA
Re: [Tacos-devel] Re: how to run a js method before AjaxDirectLink sends the request ?
Hi Cosmin, Isn't that what the updateObject is for? Your updateObject's beforeAjaxUpdate and ajaxUpdate methods will be called to handle this before and after the Ajax call. I might have misunderstood the question, but thought I would try. Thanks, Michael On 2/1/06, Cosmin Bucur <[EMAIL PROTECT
Re: [Tacos-devel] AjaxForm and FormTable
I have made an Tacos-friendly table components where the links are all Ajax links, but had avoided extending the "Form" versions of the Table components. In Tap 4.0 the FormTable is deprecated because the Table now contains the form-handling. I had avoided doing the Form version because I wa
[Tacos-devel] Re: Can only get Javascript back from AjaxDirect
Nevermind, I hadn't made Tapestry aware of the ID by using an "Any" such as [EMAIL PROTECTED] id="mainElements"> That makes it all work well. I hope nobody wasted any time on this. Thanks,Michael On 1/24/06, Michael Waluk <[EMAIL PROTECTED]> wrote: Hi, I
[Tacos-devel] Can only get Javascript back from AjaxDirect
Hi, I am using the Tacos-alpha-7 release (and Tapestry beta-13) and dojo 0.22 and am having trouble with a simple AjaxDirectLink call. I have AjaxDirectLinks in components that are used within a page. When I click the link the listener is called just fine and no exceptions are thrown. I would
[Tacos-devel] AjaxEventSubmit - just the beginning?
Hi, Is AjaxEventSubmit only available with Tacos' Radio form fields? It's Javadoc sounds hopeful: "This component is generally used when implementing _javascript_ events on form components, such as 'onchange' handlers in a PropertySelection component. Check the demo for an example." But i
Re: [Tacos-devel] How-to create dynamic sub-component ids?
Hi, I do have it working with things like...I was mainly just wondering if that is the best way to do it. I don't use the direct="true" setting so it works fine. I was also wondering if the Tapestry ID and the HTML ID have
Re: [Tacos-devel] How-to create dynamic sub-component ids?
mponent, etc.) but not for the page as a whole. Thanks again for your efforts, Michael On 12/6/05, Cosmin Bucur <[EMAIL PROTECTED]> wrote: Won't it work if you give it a dynamic id value with ognlid="ognl:myFirstId" ?On 12/6/05, Michael Waluk < [EMAIL PROTECTED]> wrote
Re: [Tacos-devel] How-to create dynamic sub-component ids?
lly we setit like this : updateComponents="ognl:{ 'yourId' , 'anotherId' }" . Allthogh I havn't tried this yet , it seems logical for you to be able to set updateComponents="ognl:myCollection" . Then you can manipulatethe collection in your code , and give it w
[Tacos-devel] How-to create dynamic sub-component ids?
Anyone have a solution for this? I use 2 instances of a component on a page. This component has an AjaxForm (search) and a @Any component. I want the form's updateComponents to include the @Any to refresh it. How can I get the ID of the @Any id without implicitly naming it (so as not to ha
Re: [Tacos-devel] How to re-render Tree after Ajax call?
rced render stuff for specifically this purpose. It could be what you're running into but it's hard to tell. I'll debug some more, maybe create a quick test page to see if I see the same thing. On 12/2/05, Michael Waluk <[EMAIL PROTECTED]> wrote: Jesse, When I do refresh
Re: [Tacos-devel] How to re-render Tree after Ajax call?
w.. On 12/2/05, Michael Waluk <[EMAIL PROTECTED]> wrote: I'm hoping someone can remind me of what to do to. Here is the scenario I am trying to get working... One component on my page contains an AjaxDirectLink whose listener updates a value in my ASO. Another component on my
[Tacos-devel] How to re-render Tree after Ajax call?
I'm hoping someone can remind me of what to do to. Here is the scenario I am trying to get working... One component on my page contains an AjaxDirectLink whose listener updates a value in my ASO. Another component on my page contains a tacos:Tree and its pageBeginRender reads the ASO value, cr