Re: inheritance to composition design in components

2014-02-07 Thread iberck
ading the post. On Thu, Feb 6, 2014 at 4:08 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Thu, 06 Feb 2014 18:57:24 -0200, iberck wrote: > > Thank you for your answer Thiago. >> > > ;) > > > I have to create multiple c1,c2

Re: inheritance to composition design in components

2014-02-06 Thread iberck
advance. On Thu, Feb 6, 2014 at 1:13 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Thu, 06 Feb 2014 16:05:04 -0200, iberck wrote: > > hi all, >> > > Hi! > > > how can I transform the next example from inheritance design to >> composit

inheritance to composition design in components

2014-02-06 Thread iberck
hi all, how can I transform the next example from inheritance design to composition design ? ParentComponent.tml: http://tapestry.apache.org/schema/tapestry_5_3.xsd"; xmlns:p="tapestry:parameter" t:content="text/html; charset=utf-8"> this is parent component ParentComponent.java: publ

Re: img tag (src)

2012-09-12 Thread iberck
My solution: ${image} public Link getImage() { Link link = resources.createEventLink("preview"); return link; } Object onPreview() { return new StreamResponse(){} } -- View this message in context: http://tapestry.1045711.n5.nabble.com/img-tag-src-tp2425421p5716261.

T5.3.5 - Possible bug EventContext.toString()

2012-09-05 Thread iberck
Possible bug T5.3.5 the toString() method of EventContext doesn't print well @Log private void persistCtx(EventContext ctx) { log.debug("EventContext:{}",ctx); log.debug("EventContext.class:{}",ctx.getClass()); _state = ctx.get(String.class, 0); idPreg = ctx.g

Re: Checklist disabled possible bug

2012-06-16 Thread iberck
Thank you lance, I'll try -- View this message in context: http://tapestry.1045711.n5.nabble.com/Checklist-disabled-possible-bug-tp5713681p5713947.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsu

Re: Checklist disabled possible bug

2012-06-14 Thread iberck
the disabled parameter doesn't work -- View this message in context: http://tapestry.1045711.n5.nabble.com/Checklist-disabled-possible-bug-tp5713681p5713913.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: Checklist disabled possible bug

2012-06-14 Thread iberck
Any ideas how can I disable the checklist component ? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/Checklist-disabled-possible-bug-tp5713681p5713888.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Checklist disabled possible bug

2012-06-06 Thread iberck
I'm Sorry Thiago, the problem is in the client side, the checkbox control doesn't render disabled -- View this message in context: http://tapestry.1045711.n5.nabble.com/Checklist-disabled-possible-bug-tp5713681p5713691.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Checklist disabled possible bug

2012-06-06 Thread iberck
Hi tapestry members: I'm using T5.3: I'm trying the checklist component and I found that the disabled property in the client side doesn't work: Checklist: ${checklistSelectedValues} @Property

Re: Change the label of component id

2012-05-31 Thread iberck
Thank you for your response but I have tried and it doesn't work Test.java: @Property private int valueNumeric; Test.tml: Test.properties: valueNumeric-label=VALOR NUMÉRICO And the result is the same: You must provide an integer value for 'Value numeric' Anyone knows how can I resolve it? Th

Change the label of component id

2012-05-31 Thread iberck
Hi tapestry members ! How can I replace the label id of a textfield without change the id of that component? If I need to replace the page's properties file, what is the key to replace? I need to change the message key integer-format-exception" of ValidationMessages.properties "integer-format-ex

Re: How can I create a component that generates unique ids?

2012-05-24 Thread iberck
Thank you !!! -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-can-I-create-a-component-that-generates-unique-ids-tp5713377p5713400.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: How can I create a component that generates unique ids?

2012-05-24 Thread iberck
Thank you for the clear response Thiago ;) ... So, if I put: I'll have 4 instance of component1 but when I put inside a Loop, it will has the same t:id because is the same instance the t:id represents the id of the component instance? Thank you -- View this message in context: http://tap

Re: How can I create a component that generates unique ids?

2012-05-24 Thread iberck
I need unique component id's because a use @Persist properties inside my component Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-can-I-create-a-component-that-generates-unique-ids-tp5713377p5713394.html Sent from the Tapestry - User mailing list arch

Re: How can I create a component that generates unique ids?

2012-05-24 Thread iberck
I have another question, how can I generate unique complete id's of a component in a loop? I have tried with jsSupport.allocateClientId("uniqueid") but it only generates unique client ids I have the next code: Text.tml Component1.java: @Inject private JavaScriptSupport jsSuport; @

Re: How can I create a component that generates unique ids?

2012-05-24 Thread iberck
thank you for your response Thiago !!! -- View this message in context: http://tapestry.1045711.n5.nabble.com/How-can-I-create-a-component-that-generates-unique-ids-tp5713377p5713392.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: How can I create a component that generates unique ids?

2012-05-24 Thread iberck
Thank you for your responses ! I'm sorry my problem is not properly explained, I wan to generate unique ids when I have nested components for example: Test.tml Component1.java: public class Component1 { @Inject private ComponentResources resources; @Inject private org.slf4j.Lo

How can I create a component that generates unique ids?

2012-05-24 Thread iberck
Hi tapestry members: How can I create a component that generates unique ids? For example: PAGE - 1 2 - I need component1 of line 1 has for example unique generated t:id="component1_0" and component1 of line 2 has for example uniq

Re: T5 How can I pass a block to a component?

2012-05-23 Thread iberck
I found the solution: .tml: public class Component1 { @Parameter @Property private Block block1; } .java: contenido bloque: Test.tml: texto bloque uno -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-How-can-I-pass-a-

Re: Perform tasks when starting the application

2012-02-15 Thread iberck
Thank you for your response -- View this message in context: http://tapestry.1045711.n5.nabble.com/Perform-tasks-when-starting-the-application-tp5487106p5487265.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Perform tasks when starting the application

2012-02-15 Thread iberck
I need to perform certain tasks when starting the application, which is the service that I have to contribute in AppModule to do it? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/Perform-tasks-when-starting-the-application-tp5487106p5487106.html Sent f

Re: Get Server Name in AppModule

2012-02-15 Thread iberck
Thank you for your time and your responses :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/Get-Server-Name-in-AppModule-tp5483475p5486944.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Get Server Name in AppModule

2012-02-14 Thread iberck
I'm sorry Hi mailing list ;) Where is the best plance to wait the first request in the AppModule ? Sorry, I'm a newbie in Tap Thank you for your response Thiago -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor Owner, Ars

Get Server Name in AppModule

2012-02-14 Thread iberck
Hi forum: How can I get the ServerName in AppModule when the application starts ? I suppose I have to get form Request but I don't know how to archive it Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/Get-Server-Name-in-AppModule-tp5483475p5483475.ht

Re: 5.3.0 java.lang.IncompatibleClassChangeError: Implementing class

2011-12-12 Thread iberck
I had clean and build my project and check the above suggestions, the result is the same :( Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/5-3-0-java-lang-IncompatibleClassChangeError-Implementing-class-tp4534951p5070300.html Sent from the Tapestry - Us

Re: 5.3.0 java.lang.IncompatibleClassChangeError: Implementing class

2011-12-12 Thread iberck
I Have the same problem, this is my pom.xml and my stack trace: - http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>

Re: T5.2.6 JSONLiteral Bug

2011-07-20 Thread iberck
I found the fix passing the arguments like javascript objects, this is my code Taha : @Import(library = { "context:js/jqplot/jquery.jqplot.min.js", // jqplot base "JQPlotInit.js", "context:js/jquery-ui-resizable-1.8.6.min.js",// resize "context:js/jqplot/jqplot.canvasTextRenderer.

Re: T5.2.6 JSONLiteral Bug

2011-07-13 Thread iberck
r. > > Can you share the actual code ? > > regards > Taha > > On Thu, Jul 14, 2011 at 4:53 AM, iberck <ibe...@gmail.com> wrote: >> >> I'm using >> Taha Hafeez wrote: >> > >> > Hi >> > >> > When you specify somethin

Re: T5.2.6 JSONLiteral Bug

2011-07-13 Thread iberck
s not there. > > When you don't specify JSONLiteral, JSON is > > {strkey : "strvalue"} > > which is fine. > > Have you debugged it in firebug or chrome, it may be showing undefined > variable or something > > regards > Taha > > On Thu, J

Re: T5.2.6 JSONLiteral Bug

2011-07-13 Thread iberck
When I send the JSONObject: jsSupport.addInitializerCall("test1", jobj.toCompactString()); IT WORKS Thanks in advance ;) -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-6-JSONLiteral-Bug-tp4584187p4584206.html Sent from the Tapestry - User mailing list archive at Nabb

T5.2.6 JSONLiteral Bug

2011-07-13 Thread iberck
Hi forum: When I send a JSONObject or JSONArray without JSONLiteral, my page shows a "[OK] Alert", the problem is when I send a JSONLiteral, the test1 function never is executed, I suppose it's a bug, anyone can help me? This is my test code: Test.tml: http://tapestry.apache.org/schema/tapestry

Re: show/hide a zone from javascript

2011-07-09 Thread iberck
Thank you Taha, your response are useful for me :D -- View this message in context: http://tapestry.1045711.n5.nabble.com/show-hide-a-zone-from-javascript-tp4569536p4569596.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

show/hide a zone from javascript

2011-07-09 Thread iberck
Hi !! Anyone knows how can I show/hide a zone from javascript? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/show-hide-a-zone-from-javascript-tp4569536p4569536.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: T5.2 Need Advice on JDBC and Transaction Mgmt

2011-05-27 Thread iberck
Any plans for suppor live class reloading in spring beans? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-Need-Advice-on-JDBC-and-Transaction-Mgmt-tp3301388p4433969.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: T5.2 Need Advice on JDBC and Transaction Mgmt

2011-05-27 Thread iberck
I'm implementing this approach to have live class reloading with TapestryIoC Services Annotated with spring's @Transactional, but I have a problem: How can I implement this approach COMPLETE, my problem is when I define for example @Transactional(readonly=true) or @Transactional(rollbackfor=Except

Re: T5.2.4 How to discard persistent fields when the user leaves a page ?

2010-12-29 Thread iberck
Thank you for your responses, this clarifies my way -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-4-How-to-discard-persistent-fields-when-the-user-leaves-a-page-tp3318549p3321092.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

T5.2.4 How to discard persistent fields when the user leaves a page ?

2010-12-25 Thread iberck
Hello appreciate members Anyone knows a way to discard persistent fields (delete fields of the session) of a page when the user leaves it and changes to another ? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-4-How-to-discard-persistent-fields-w

Re: Problem with StreamResponse and Ajax

2010-12-23 Thread iberck
ent responses to the same request... but you can > chain a series of requests and responses together to achieve a similar > effect. :) > > Robert > > On Dec 23, 2010, at 12/235:44 PM , iberck wrote: > >> >> Thank you for the reponse Thiago >> So can'

Re: Problem with StreamResponse and Ajax

2010-12-23 Thread iberck
Thank you for the reponse Thiago So can't I generate a stream file and then use ajax request in the same page? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/Problem-with-StreamResponse-and-Ajax-tp3316957p3317114.html Sent from the Tapestry - User maili

Problem with StreamResponse and Ajax

2010-12-23 Thread iberck
I'm using T5.2.4 I have a page with ajax (zones and actions) and I have to generate a excel file when a user clicks on actionlink. If I add a zone in the actionlink that generates the StreamResponse the excel file is never generated but if I use an actionlink without zone the excel file is gener

Re: Tapestry 5.1.0.5 repit the scripts

2010-11-12 Thread iberck
Thank you for your response, I', trying and all is ok. So include libraries in isn't recomendend Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-1-0-5-repit-the-scripts-tp3261634p3262547.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: Tapestry 5.1.0.5 repit the scripts

2010-11-12 Thread iberck
Thank you for time and your responses Yes, I'm using the tapestry capabilities,the only diference is I'm using "${asset:context:js/jquery-1.4.2.min.js}" in the layout and @IncludeJavaScriptLibrary("context:js/jquery-1.4.2.min.js") in the mixin, this is my code: Layout.tml: -

Re: Tapestry 5.1.0.5 repit the scripts

2010-11-12 Thread iberck
Pd. If I add the script 2 times my mixin breaks Thanks in advance for your responses -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-1-0-5-repit-the-scripts-tp3261634p3261657.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Tapestry 5.1.0.5 repit the scripts

2010-11-12 Thread iberck
Hi dear tapestry users: I don't know if it is a bug or if it affects above versions but when I add a script (jquery) in my layout component and then I add the same script (jquery) in a mixin, the generated html has the same script (jquery) 2 times I spend some time to discover this problem becau

Re: Tapestry 5.2.2: The rendered content did not include any elements that allow for the positioning of the hidden form field's element.

2010-11-10 Thread iberck
Thank you for your response Howard, this is my tml that throws the exception

Re: Tap 5.2.2 With JQuery Problems

2010-11-10 Thread iberck
Thank you for your time and you effort, I will look with Tap 5.2.0 Regards -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tap-5-2-2-With-JQuery-Problems-tp3259280p3259351.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Tap 5.2.2 With JQuery Problems

2010-11-10 Thread iberck
Dear tapestry users: I try to use http://github.com/andyhot/tapestry5-jquery/tree/tap-5.2 with Tapestry 5.2 but I have some problems, when I open my application I watch the exception: org.apache.tapestry5.internal.services.RenderQueueException: Render queue error in SetupRender[core/ExceptionRep

Tapestry 5.2.2: The rendered content did not include any elements that allow for the positioning of the hidden form field's element.

2010-11-10 Thread iberck
Hi Dear tapestry users I'm migrating an application from T5.1->T5.2 but I throws the next exception: java.lang.IllegalStateException The rendered content did not include any elements that allow for the positioning of the hidden form field's element. Anyone can help me? The full stack trace: 10

Re: Diference between addInit and addScript

2010-11-09 Thread iberck
Thank you for your responses So, is the execution moment the only diference ? Thanks in advance guys -- View this message in context: http://tapestry.1045711.n5.nabble.com/Diference-between-addInit-and-addScript-tp3256418p3257752.html Sent from the Tapestry - User mailing list archive at Nabbl

Diference between addInit and addScript

2010-11-09 Thread iberck
Hello forum, I have a question What is the diference between renderSupport.addInit(); and renderSupport.addScript(); since two methods adds a javascript function that runs on dom loaded Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/Diference-between

Re: Tapestry5 Got5-JQuery experiences

2010-10-31 Thread iberck
ael wrote: > > http://docs.jquery.com/Using_jQuery_with_Other_Libraries > http://docs.jquery.com/Using_jQuery_with_Other_Libraries > Thank you for the link but I need Jquery "without prototype" -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry5-Got5-JQuery-expe

Re: jQuery Integration for 5.2

2010-10-27 Thread iberck
Thank you for your time and your response more or less on what time we will have that javascript stacks ? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-Integration-for-5-2-tp2834002p3239781.html Sent from the Tapestry - User mailing list archi

Re: jQuery Integration for 5.2

2010-10-27 Thread iberck
Here there are more reasons to create the base components with jquery 46% of the applications on the web are made in jquery http://trends.builtwith.com/javascript/JQuery Regards -- View this message in context: http://tapestry.1045711.n5.nabble.com/jQuery-Integration-for-5-2-tp2834002p3239343

Re: T5 Guide: Building Tapestry 5.1.0.5 using Netbeans 6.9.1

2010-10-21 Thread iberck
Moreover you can use my tapestry5 netbeans plugin You can download here https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList?folderID=11159&expandFolder=11159&folderID=11158 Here is the documentation https://nbtapestrysupport.dev.java.net/ good luck -- View this message in co

Re: Tapestry5 Got5-JQuery experiences

2010-10-20 Thread iberck
Thank you for the response andy I hate prototype and other developers thinks the same: http://stackoverflow.com/questions/176324/why-does-everyone-like-jquery-more-than-prototype-script-aclo-us-or-mootools-or-w), I was waiting a tested libraries like these for use Tapestry I have tapestry 5.1

Tapestry5 Got5-JQuery experiences

2010-10-20 Thread iberck
Anyone has tested http://github.com/got5/tapestry5-jquery for integrate jquery with tapestry5? I want to use it in production but I'm not sure Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry5-Got5-JQuery-experiences-tp3228056p3228056.html Sent

Re: Disable Access denied Stack-trace

2010-10-18 Thread iberck
g options. > > On Wed, Oct 13, 2010 at 9:29 PM, iberck wrote: > >> >> Hi forum >> >> I had implemented a T5 webapp with spring-security module, when a user >> try >> to access a page when the session is expired it redirects to login page >

Re: [T5] Complexity for simple things, where is the documentation?

2010-10-16 Thread iberck
Thank you very much for your time and your responses In this example, what happend if I want to learn mixins for create my own, where is the official documentation? Must I necessarily download and understand the source code of Autocompletemixin for learn? I think not all users are used to downl

[T5] Complexity for simple things, where is the documentation?

2010-10-16 Thread iberck
I'm little confused with Tapestry In another past post I asked how can I refresh my page with the server time: http://tapestry.1045711.n5.nabble.com/T5-Refresh-1-second-Ajax-method-td3210194.html#a3210194 I only need refresh my page with the server time and I need to learn mixins, ajax, zones, p

Re: T5 - Refresh 1 second Ajax method

2010-10-14 Thread iberck
Bryan Lewis wrote: > > This tutorial might be helpful. It shows a page being periodically > updated. > > http://blog.bolkey.com/2010/05/creating-a-news-feed-in-tapestry-5/ > > > On Thu, Oct 14, 2010 at 7:04 AM, LLTYK wrote: > >> >> I don't think there's an existing howto floating around so

Disable Access denied Stack-trace

2010-10-13 Thread iberck
Hi forum I had implemented a T5 webapp with spring-security module, when a user try to access a page when the session is expired it redirects to login page and prints a stractrace like this: org.apache.tapestry5.ioc.internal.util.TapestryException: Access is denied at org.apache.tapestry

Re: T5 - Refresh 1 second Ajax method

2010-10-13 Thread iberck
Thank you for the response, but how can I do it with tapestry 5? I'm novice -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-Refresh-1-second-Ajax-method-tp3210194p3210223.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

T5 - Refresh 1 second Ajax method

2010-10-13 Thread iberck
Hi tapestry forum :) I need to show the server date in my webapp (not the client date), and refresh it every 1 second with ajax Anyone know how can I create an ajax method to show it ? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-Refresh-1-second

Re: [T5.2] Principle 1, Static Structure Dynamic Behaviour

2010-10-05 Thread iberck
Thank you Howard, Thank you Thiago -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-Principle-1-Static-Structure-Dynamic-Behaviour-tp3198357p3199978.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: [T5.2] Principle 1, Static Structure Dynamic Behaviour

2010-10-05 Thread iberck
Thank you all for your answers The concept is more clear for me... But I have another question? >From this principle of static structure dynamic behaviour, can I create with T5 a CRM based on plugins like drupal/jomla ? Thanks in advance -- View this message in context: http://tapestry.1045711

Re: [T5.2] Principle 1, Static Structure Dynamic Behaviour

2010-10-05 Thread iberck
terrific response Thank you very much -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-Principle-1-Static-Structure-Dynamic-Behaviour-tp3198357p3198975.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: [T5.2] Principle 1, Static Structure Dynamic Behaviour

2010-10-04 Thread iberck
Hi, thank you for the response So I don't understand the principle 1. What happend if I add a html element in the tree dom and I get the value from the request after submit ? I'm violating the principle? Is there a problem if I do that? -- View this message in context: http://tapestry.1045

[T5.2] Principle 1, Static Structure Dynamic Behaviour

2010-10-04 Thread iberck
Hi forum, I have a question, since T5.2 does't use a pages pool, what happend with Tapestry principle 1? Now, can we have a more flexible component framework? :) -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-Principle-1-Static-Structure-Dynamic-Behaviour-tp3198

Strange symbols

2010-09-30 Thread iberck
Hi all ! I have a Tapestry (5.1.0.5) with tapestry-spring security module, OpenSessionInViewFilter When I run my application with jetty all it's ok, but when I run the application with tomcat 6 and I click some pages, the browser shows me strange symbols. For example, when I click on [Administra

[T5.2] Javaassist is out ?

2010-09-28 Thread iberck
Hi all ! I have a question.. Is javaassist out in T5.2 ? Thanks in advance -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-2-Javaassist-is-out-tp2900547p2900547.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Netbeans 6.7 tapestry 5 plugin support

2009-06-15 Thread iberck
Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp The supported features are: Initial features: * Create pages/components from wizard * Code templates * Actions * tml files highlighting * Live class reloading Code templates For example, if you type [o

Re: Switch from Prototype to jQuery?

2009-06-10 Thread iberck
Hi, there is a interest survey results of JavaScript Frameworks http://www.kylehayes.info/2009/03/29/survey-results-javascript-frameworks/ -- View this message in context: http://www.nabble.com/Switch-from-Prototype-to-jQuery--tp21750338p23965054.html Sent from the Tapestry - User mailing list

Jquery + Ajax

2009-03-27 Thread iberck
Hi, I'm newbie in tapestry and I'm using asynchronous ajax request to a class page method: var $jq = jQuery.noConflict(); /* $jq(document).ready(function() { });*/ function enviaAjax(idOpcion) { aler

Re: Spring security + tap5

2009-03-17 Thread iberck
Thank you for the response Thiago H. de Paula Figueiredo wrote: > > Em Mon, 16 Mar 2009 22:43:02 -0300, iberck escreveu: > >> Hi, I'm developing an application based on tapestry5 and spring security >> 2.0 with the tapestry-spring-security extension. My applicatio

Spring security + tap5

2009-03-16 Thread iberck
Hi, I'm developing an application based on tapestry5 and spring security 2.0 with the tapestry-spring-security extension. My application works fine with the plugin page's example adapted. My problem is that the autentification is againts hardcode source but I need the autentification over db My q

Re: [T5] Expression Language

2009-01-27 Thread iberck
thank you of your response and your time Now I understand the concept. Francois Armand wrote: > > iberck wrote: >> Hi, I'm developing an application with tap 5.. >> > Great, good new. Welcome on board ! >> I don't understand why I can

[T5] Expression Language

2009-01-26 Thread iberck
Hi, I'm developing an application with tap 5.. I don't understand why I can't use OGNL inside tap5 and with tap4 yes ! I found a set of components (http://code.google.com/p/tapestry5-components/) that has the OGNL component, the question is why outside of the core ? what in tap5 OGNL is out, wh