hi
listener:
public void onMyAction(String componentId)
{
//some code
}
link generated for this listener:
public String getTheLink()
{
Link l = _componentResources.createActionLink("myaction", false,
"param.param");
return l.toURI();
}
result link is som
Alexander Turtsevich wrote:
i'm developing ajax tree component, providing 2 interfaces to
implement: JqTreeKeyPrivider and JqTreeModel
but i cant pass classes that implements those interfaces to the
component, getting error :
Could not find a coercion from
i'm developing ajax tree component, providing 2 interfaces to
implement: JqTreeKeyPrivider and JqTreeModel
but i cant pass classes that implements those interfaces to the
component, getting error :
Could not find a coercion from type
org.example.ajax.components.TreeModel to type
org.e
Michael Courcy wrote:
Hi
i used this example for tapestry 5.0.6 to update some components:
Where did you read this example ? On the wiki ?
Thanks.
thats from mail list, you may search here
http://www.nabble.com/Tapestry-f302.html
-
hi,
i used this example for tapestry 5.0.6 to update some components:
public Object onMyAction()
{
MarkupWriter markupWriter = _markupWriterFactory.newMarkupWriter();
markupWriter.element("component");
_pageRenderInitializer.setup(markupWriter);
Page page =
_re
Adam Ayres wrote:
There appears to be a small bug with the Request.isXHR() method, the
value of the "X-Requested-With" header that Prototype sets by default
for all of its AJAX calls is:
"XMLHttpRequest"
Tapestry checks against the value:
"XmlHttpRequest"
The RequestImplTest h