Re: Tapestry-Bootstrap : Using the component

2012-09-03 Thread indiancomet
Yup, other form elements are appearing correctly like the Bootstrap ones. Interesting thing to note is that the is being output as in html. I believe for this to look anywhere near the Bootstrap dropdown it should be a containing and Coz, i do not see a direct correlation of the html select co

Tapestry-Bootstrap : Using the component

2012-09-03 Thread indiancomet
I using Tapestry-Bootstrap and am struggling to get the Tapestry component to appear as Twitter-Bootstrap dropDown. I am sure it something simple which i am missing here. Would someone care to point me in right direction. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T

Re: Plastic: Test that 2 object references are equal

2012-09-03 Thread Thim Anneessens
Hi Josh,   I am trying to generate byte-code that will test if 2 object references are equal using Plastic. Thanks. Thim. On 08/25/2012 05:13 PM, Josh Canfield wrote: Hi Thim. Your question doesn't make any sense. What ar

Re: Tapestry-Bootstrap : Using the component

2012-09-03 Thread indiancomet
Ok. My bad. There is a direct correlation with the select component. I am tryping to make it appear like http://twitter.github.com/bootstrap/components.html#buttonDropdowns. Is that possible? -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Bootstrap-Using-the-t-s

Submitting a form from another page

2012-09-03 Thread fabs
Hello all. My website has a login page, with a username and password field. However, I wish to show an inline login form on all pages when the user is not logged in, and submit the login request from any page to the main login page (to allow errors to be displayed in case login is unsuccessful). I

Re: Tapestry-Bootstrap : Using the component

2012-09-03 Thread Jay Ginete
I think you can do something like this on your .tml file 1. 2. 3. Action 4. 5. 6. 7. Do Action1 8. Do Action2 9. 10. And then then in your class file is just: public void onActionFromDoAction1(){ //do stuff } public void onActionFromDoAction2(){ //do stuff } On Monday, 03 S

Re: Submitting a form from another page

2012-09-03 Thread Dmitry Gusev
Hi, create new component with your login form and use it on all pages you want. On Mon, Sep 3, 2012 at 1:11 PM, fabs wrote: > Hello all. > > My website has a login page, with a username and password field. However, I > wish to show an inline login form on all pages when the user is not logged >

Re: Submitting a form from another page

2012-09-03 Thread mailingl...@j-b-s.de
What about placecing the login form in your layout page/class and surround it by a in your layout tml and implement a "boolean isUserLoggedIn()" method in your layout class? See T5 doc: Api docs/corelib/components/if User Guide/Layout Component Jens Sent from my iPhone On 03.09.2012,

Re: Submitting a form from another page

2012-09-03 Thread fabs
Thanks for the advice. I have solved this by creating a login form component. The login component attempts to log the user in, and if it fails, it uses @InjectPage to inject the login page, and it sets the errors on the main login form (like form.recordError("The username or password was incorrect.

Re: Tapestry-Bootstrap : Using the component

2012-09-03 Thread trsvax
Button Group button1 button2 button3 Button Group with dropdown # dropdown Link1

Re: [Documentation Errata] EventLink page

2012-09-03 Thread Thiago H de Paula Figueiredo
On Sat, 01 Sep 2012 15:09:48 -0300, Muhammad Gelbana wrote: Oh thanks. Was this valid for long time ? As far as I can remember, since the first Tapestry 5 alpha releases. -- Thiago H. de Paula Figueiredo - To unsubscribe,

Can't change BeanEditForm submitLabel with a mixin?

2012-09-03 Thread trsvax
I'm trying to change the BeanEditForms submitLabel with a mixin like this @BindParameter private String submitLabel; void setupRender() { submitLabel = "New"; } but that results in this Render queue error in SetupRender[user/New:user]: Failure writing parameter 'submitLabel' of component u

Re: [OT] Closest Framework to Tapestry in Microsoft world

2012-09-03 Thread Jay Ginete
ASP Web Forms come to mind. On 9/3/2012 11:04 AM, Chris Mylonas wrote: Hi Tapestry Users, Just showing an MS dude on what has drawn me into web framework use and showed the 10 minute demo vid. I've got two MS dev mates, one I've shown and he thinks it's rad, and the other will no doubt come b

Re: Tapestry-Bootstrap : Using the component

2012-09-03 Thread indiancomet
I could do that but, i was looking for more close to some stuff like select which can take a model and display the relevant options rather than me having to specify all the options. The options might come from a database (lets say) -- View this message in context: http://tapestry.1045711.n5.nab

Tapestry Bootstrap : Autocomplete dropdown style

2012-09-03 Thread indiancomet
The style for jquery/Autocomplete is does not appear as that of a Bootstrap autocomplete. I can see that it is inheriting the style from jQuery (Tapestry-jQuery). [It is a shade of yellow rather being a shade of blue] I was hoping the Tapestry-Bootstrap should override that style rather than me hav

Why such a simple defect can not be fixed?

2012-09-03 Thread Rural Hunter
https://issues.apache.org/jira/browse/TAP5-1865 I raised the defect several months ago and there have been several Tapestry releases since then. I don't see any action in the ticket so I suppose it's not fixed. The solution is very simple and has already been put in the ticket. I'm wondering w

Re: Can't change BeanEditForm submitLabel with a mixin?

2012-09-03 Thread Thiago H de Paula Figueiredo
On Mon, 03 Sep 2012 12:12:19 -0300, trsvax wrote: I'm trying to change the BeanEditForms submitLabel with a mixin like this @BindParameter private String submitLabel; void setupRender() { submitLabel = "New"; } but that results in this Render queue error in SetupRender[user/New:user]:

Re: Can't change BeanEditForm submitLabel with a mixin?

2012-09-03 Thread trsvax
I still get the same error Render queue error in SetupRender[address/New:address]: Failure writing parameter 'submitLabel' of component address/New:address: Binding LiteralBinding[default submitLabel: Create/Update] is read-only. I also tried @Parameter private String submitLabel; @Bi

Re: Tapestry Bootstrap : Autocomplete dropdown style

2012-09-03 Thread trsvax
I just have not gotten to that component yet. I'd gladly take a look at a pull request. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-Bootstrap-Autocomplete-dropdown-style-tp5716016p5716021.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Tapestry-Bootstrap : Using the component

2012-09-03 Thread trsvax
I don't think the select component has enough in common with the button group to use the same model. The button group is not really a form component but just a way to display a bunch of links. With Tapestry these could be page/event/action or just plain a tags. I have driven button groups from a

Re: Why such a simple defect can not be fixed?

2012-09-03 Thread Sigbjørn Tvedt
Hi I guess the contributers are looking for issues that has a title the know they are able to fix, or issues with attachments so that they will be able to just apply it as a patch. (If the title was "Norwegian validation message issue", would you open it unless it signaled that it was ready to be

Re: Why such a simple defect can not be fixed?

2012-09-03 Thread Muhammad Gelbana
Although it's the best for the community as a whole that a defect doesn't last long unresolved, but the committers may not always have the chance to fix them. A trivial defect in tapestry-jquery hasn't been even replied too although reported 2 days ago

Re: Why such a simple defect can not be fixed?

2012-09-03 Thread Rural Hunter
Yes, I understand no one is paid for Tapestry and I really appreciate all the committers for this wonderful framework. I was just wondering the process to get something fixed because the issue I raised is really very simple and straight. For example, if there is someone regularly checks all the

Re: Why such a simple defect can not be fixed?

2012-09-03 Thread Joachim Van der Auwera
If you really want to get something fixed, your best option is to add a patch to the JIRA issue. If that does not get picked up, you could always ask whether the patch is good enough here. Without a patch, you are just hoping for the goodwill of others. You already get to use a great framework

Re: Why such a simple defect can not be fixed?

2012-09-03 Thread Rural Hunter
No, you misundertand. I have easy workaround for the issue I raised. I just recalled this issue by someone else yesterday because he met the same issue and found my ticket. Since this simple issue has been opened for long time, I'm just curious about the process. 于 2012/9/4 14:30, Joachim Van