Re: Some bean properties lose values on redirect

2006-09-27 Thread Aneesha Govil
    System.err.println(ex.getStackTrace());     }    }    }     }}Now when the detail.jsp opens, it gives a null pointer exception because String[] detail is null again. Can anyone help me figure out what is being done wrong here?Please help.ThanksOn 9/27/

Re: Tomahawk t:datatable detail row

2006-09-27 Thread Aneesha Govil
#x27; supposed to do? On 9/27/06, Aneesha Govil <[EMAIL PROTECTED] > wrote: Hi,I want to know more about the detail row feature in tomahawk. I cannot find appropriate documentation/samples. In fact the feature isn't even listed on the wiki ( http://wiki.apache.org/myfaces/Extende

Re: Some bean properties lose values on redirect

2006-09-28 Thread Aneesha Govil
ponent should not travelto the new view with you, so it should make sense that the componentbinding is now null and if you tried to access it, it would becreated. I am not 100% sure of what is going on, but that is my best guess.On 9/27/06, Aneesha Govil <[EMAIL PROTECTED]> wrote:> Hi,>&

Re: Some bean properties lose values on redirect

2006-09-29 Thread Aneesha Govil
ession, conversation, etc)On 9/28/06, Aneesha Govil <[EMAIL PROTECTED]> wrote:> I need to store some values on an action and open a new page displaying > something in accordance with the values saved. Is there any workaround to> accomplish this?>> Thanks for replying.> Aneesha&g

Re: Some bean properties lose values on redirect

2006-09-29 Thread Aneesha Govil
the next page. Thanks so much for reading.AneeshaOn 9/30/06, Andrew Robinson <[EMAIL PROTECTED] > wrote:Did you persist the properties in the bean or in a bound component. I thought from your example you have the properties persisted in theUIData object.On 9/29/06, Aneesha Govil <[EMAIL

Re: Need Help

2006-09-29 Thread Aneesha Govil
I am not sure, I am pretty new to JSF but it sounds like you would need Ajax to accomplish this. You would need to have something that keeps checking for whether there is more data and then display it. Ajax is definitely used to implement this kind of functionality. So you can work with Ajax and JS

Re: Need Help

2006-09-29 Thread Aneesha Govil
You can use Ajax4jsf, it enables you to ajaxify JSF components. It's a free and open-source framework.AneeshaOn 9/30/06, Aneesha Govil < [EMAIL PROTECTED]> wrote:I am not sure, I am pretty new to JSF but it sounds like you would need Ajax to accomplish this. You would need to have som

Re: t:commandLink for navigation but browser url not changed

2006-10-03 Thread Aneesha Govil
On 10/3/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: In summary:URL != View IDThere are many WIKI entries and posts discussing this and differentways of handling this based on your needs.-AndrewCan you give me some links to those resources? I can't find any, I suppose you mean the myfaces wiki. T

Re: How To Workaround dynamic ID for datatable's etc...

2006-10-04 Thread Aneesha Govil
I think you could create data tables in java code and set id using datatable.setId("id"+some_dynamic_number_or_text). It is still static, it's just that you are setting it in the managed bean so you can use whatever u want. Hope that helps.AneeshaOn 10/4/06, Wesley Hales <[EMAIL PROTECTED]> wrote:

Re: commandLink

2006-10-04 Thread Aneesha Govil
Can you post the whole of the navigation rule that contains the navigation case?AneeshaOn 10/4/06, Aneesha Govil < [EMAIL PROTECTED]> wrote:What happens? It doesn't redirect or what? Does it remain blank or nothing happens? AneeshaOn 10/3/06, [EMAIL PROTECTED] <[EMAIL PROTECT

Re: commandLink

2006-10-04 Thread Aneesha Govil
What happens? It doesn't redirect or what? Does it remain blank or nothing happens?AneeshaOn 10/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:Hi, that's not the problem.Facelets arent the problem, too.I tried it with a simple jsp-webapp and a simple commandLink.I dont know why my commandLink w

Re: Remembering "first" attribute in t:dataTable

2006-10-08 Thread Aneesha Govil
Well I have the same usecase. I am using the approach on the below-mentioned link. Try it..http://marc2.theaimsgroup.com/?l=myfaces-user&m=113874875226923&w=2 I am not using the datatable's first attribute. I don't know how to make this work with that. Hope that helps!AneeshaOn 10/8/06, Titi Wangs

Re: Datascroller displays incorrect pageIndex (1)

2006-10-09 Thread Aneesha Govil
Hi Jeff,I am using datatable binding as well. Are there any known issues with using as against the value, rows and first bindings?In my usecase, I cannot use the latter because I add buttons on top of my raw table data for navigating to the detail page etc. I will not go ahead with this approach i

Tomahawk and ajax4jsf - t:datascroller and sortheaders don't work

2006-10-09 Thread Aneesha Govil
Hi,I got the datatable, sortheaders and datascroller working with Tomahawk. Then I was trying to ajaxify the table loading on the basis of a drop down. The table loads with ajax perfectly however, the datascroller and sort headers in it have stopped working. Is this a known issue? Does tomahawk not

Re: file download component for JSF

2006-10-12 Thread Aneesha Govil
Here is what my understanding of the extensions is - Tomahawk is a collection of JSF components that extend the functionality of MyFaces. They can be added with Sun's RI of JSF as well. Tomahawk has a stable release. Trinidad is the part that Oracle ADF donated to Apache. It has a rich set of compo

Re: myfaces example and blank.war

2006-10-12 Thread Aneesha Govil
That link has been broken for quite a while. If you want it fixed, vote for this bug - http://issues.apache.org/jira/browse/MYFACES-1414Meanwhile you can look at this tutorial - http://courses.coreservlets.com/Course-Materials/jsf.html--AneeshaOn 10/13/06, ying lcs <[EMAIL PROTECTED]> wrote:From

Re: Context Sensitivity on DataScroller

2006-10-16 Thread Aneesha Govil
Hi,Please tell me if you find a solution to this. I need to do something similar. Thanks,AneeshaOn 10/16/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi,   I use the t:dataScroller component to get the First | Previous | Next | Last. However, I would like to have the context sensitivity t

Tomahawk datascroller problem

2006-10-19 Thread Aneesha Govil
Hi,I have a t:datascroller that is used for a datatable created dynamically. I use component binding to render this datatable. The first time I load this page it works fine. The next time I again land on this page, I get the following exception: javax.faces.FacesException: could not find UIData ref

Re: Tomahawk and ajax4jsf - t:datascroller and sortheaders don't work

2006-10-24 Thread Aneesha Govil
Nope, I have dumped ajax4jsf because I could not resolve this problem and couldn't get any help on it. I am going to write my own ajax wherever required.Let me know if you find any resolutions though. Regards, AneeshaOn 10/25/06, ndnguy <[EMAIL PROTECTED]> wrote: Were you able to figure out the iss

Re: Tomahawk and ajax4jsf - t:datascroller and sortheaders don't work

2006-10-25 Thread Aneesha Govil
under a panelGroup, and have the ajax refresh the panelGroup, so that both the dataTable and the dataScroller got refreshed together.   Please let me know how you go with this. I am in the process of evaluating a4j myself.   Best regards, Yee   From: Aneesha Govil [mailto:[EMAIL PRO

Re: Tomahawk and ajax4jsf - t:datascroller and sortheaders don't work

2006-10-26 Thread Aneesha Govil
aTable and the dataScroller under a panelGroup, and have the ajax refresh the panelGroup, so that both the dataTable and the dataScroller got refreshed together.   Please let me know how you go with this. I am in the process of evaluating a4j myself.   Best regards, Yee   From: Aneesha

Re: Tomahawk and ajax4jsf - t:datascroller and sortheaders don't work

2006-10-26 Thread Aneesha Govil
topped. Something in myfaces or tomahawk must have changed to  make them stop working?Does anyone have any ideas or work arounds?Thanks, Kaeri>  ---Original Message--->  From: Aneesha Govil <[EMAIL PROTECTED]>>  Subject: Re: Tomahawk and ajax4jsf - t:datascroller and sortheade

Get Myfaces 1.1.4 source

2006-10-27 Thread Aneesha Govil
Hi,I need to get the source of myfaces 1.1.4 and tomahawk 1.1.3. I cannot figure out how to check it out from the repository, the instructions are only for checking out from the trunk. I tried the following command "svn checkout https://svn.apache.org/repos/asf/myfaces/site/tags/1_1_4 myfaces"But

Re: Get Myfaces 1.1.4 source

2006-10-27 Thread Aneesha Govil
Figured this out. Using command svn checkout https://svn.apache.org/repos/asf/myfaces/core/tags/1_1_4On 10/27/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi,I need to get the source of myfaces 1.1.4 and tomahawk 1.1.3. I cannot figure out how to check it out from the repository, the instru

Debug logging in MyFaces

2006-10-31 Thread Aneesha Govil
Hi,I am getting the following exception on dynamically creating some drop down listsjava.lang.IllegalArgumentException: Value is no String (class=java.lang.Long, value=5) and component _idJsp1:parent:0:filterPanel_2:0:filterPanel_5with path: {Component-Path : [Class: javax.faces.component.UIViewRo

JSF and ajax using phaselistener approach

2006-10-31 Thread Aneesha Govil
Hi,Can anyone give me links to any resources/examples on Ajax with JSF using the PhaseListener approach. I found it on the J2EE Blueprints but they work only with Java EE 5. I am using myfaces 1.1.4 (J2EE 1.4). Does this approach work with that too? Please give me some links/resources. Any help is

Re: JSF and ajax using phaselistener approach

2006-10-31 Thread Aneesha Govil
gards,AneeshaOn 10/31/06, Craig McClanahan < [EMAIL PROTECTED]> wrote: On 10/31/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi,Can anyone give me links to any resources/examples on Ajax with JSF using the PhaseListener approach. I found it on the J2EE Blueprints but they work only with Java

Re: JSF and ajax using phaselistener approach

2006-10-31 Thread Aneesha Govil
Well silly question but what does PPR stand for?Thanks,AneeshaOn 10/31/06, Gerald Müllan <[EMAIL PROTECTED] > wrote:Hi,have a look at the sandbox PhaseListeners:PPRPhaseListener, AjaxDecodePhaseListener regards,GeraldOn 10/31/06, Aneesha Govil <[EMAIL PROTECTED]> wrote:> Hi,>&g

Re: JSF and ajax using phaselistener approach

2006-10-31 Thread Aneesha Govil
On 10/31/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: In addition to the other references people have given, you might want to look at the Remoting feature in Shale[1].  It includes a built-in phase listener that tries to do all the hard stuff so you don't have to, and an extensible Processor ar

Re: JSF and ajax using phaselistener approach

2006-11-01 Thread Aneesha Govil
On 11/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote: Hi   Where did you get that idea from? Shale does not require you to use html (That is an option when using Clay). Shale is a framework around JSF, and as such you can use MyFaces or JSF RI with it.   If you want to use Shale, its

Re: JSF and ajax using phaselistener approach

2006-11-01 Thread Aneesha Govil
nnesha,   I use the datatable with datascroller and a4j. I spent a lot of time to get this running and I had to patch the datatable and the datascroller. What is your specific problem ? (I don't have the beginning of this thread)   Michael   From: Aneesha Govil [mailto:[EMAIL PROTEC

Re: How can I reset or clear a session

2006-11-01 Thread Aneesha Govil
Well, I clear a bean in my application on press of a button. I use the following method:private void resetFilterBean() {        FacesContext fc = FacesContext.getCurrentInstance();        fc.getApplication().createValueBinding( "#{filter}").setValue(fc, new FilterBean()); }Maybe you can reset all t

Re: How to add tomahawk support to a Sun JSF RI application

2006-11-01 Thread Aneesha Govil
myfaces-extension.jar is now renamed to tomahawk-version.jar.. if that is of some help.Regards,AneeshaOn 11/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi All,   Please help me in this regard.   I am receiving no inputs from the members.     I have refe

Re: How to add tomahawk support to a Sun JSF RI application

2006-11-01 Thread Aneesha Govil
Also, the extensions filter should have the class set to org.apache.myfaces.webapp.filter.ExtensionsFilterinstead of org.apache.myfaces.component.html.util.ExtensionsFiltermentioned on that webpage. AneeshaOn 11/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED] > wrote: Hi All,   Please help m

Re: How to add tomahawk support to a Sun JSF RI application

2006-11-01 Thread Aneesha Govil
<url-pattern>/.ibmjsfres/*url-pattern > servlet-mapping> <welcome-file-list> <welcome-file>index.htmlwelcome-file > <welcome-file>index.htmwelcome-file > <welcome-file>index.jspwelcome-file > <welcome-file>default.htmlwelcome-file > <welc

Re: How to add tomahawk support to a Sun JSF RI application

2006-11-01 Thread Aneesha Govil
tartup>-1load-on-startup > servlet> <servlet-mapping> <servlet-name>JS Resource Servletservlet-name> <url-pattern>/.ibmjsfres/*url-pattern > servlet-mapping> <welcome-file-list> <welcome-file>index.htmlwelcome-file > <welcome-file>index.htmwel

Re: How to add tomahawk support to a Sun JSF RI application

2006-11-02 Thread Aneesha Govil
ces impl(myfaces-api.jar and myfaces-impl.jar).My project wants to stick to sun's impl.   Best Regards, Pallavi From: Aneesha Govil [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 01, 2006 5:02 PMTo: MyFaces DiscussionSubject: Re: How to add tomahawk support to a Sun JSF RI application H

Re: JSF and ajax using phaselistener approach

2006-11-02 Thread Aneesha Govil
FacesContext(), first);>> return;>>   }>>   else> > if (_preservedDataModel != null)>> {>> //Also change the currently restored DataModel attribute>> _preservedDataModel.setFirst(first); >>

Set actionlistener in java code?

2006-11-07 Thread Aneesha Govil
Hi,I need to associate an actionlistener with an htmlcommandbutton in java code. I am using the following code snippet:HtmlCommandButton addButton = new HtmlCommandButton(); addButton = new HtmlCommandButton(); MethodBinding mb = FacesContext.getCurrentInstance().getApplication().createMethodBindin

Re: Set actionlistener in java code?

2006-11-07 Thread Aneesha Govil
tag sources for information how to setany tag attribute value into the UIComponent object. Regards,  Volker2006/11/7, Aneesha Govil <[EMAIL PROTECTED]>:> Hi,>> I need to associate an actionlistener with an htmlcommandbutton in java > code. I am using the following code snippet:&g

Query about SelectOneMenus in t:datalist

2006-11-13 Thread Aneesha Govil
Hi,I have two drop-downs in a datalist, i.e., there are several rows, each having two dropdowns and a textbox. On change of the first dropdown, I need to change the select items in the second dropdown and manipulate the textbox (change it to a calendar or dropdown). Now the problem is, since the co

Re: Query about SelectOneMenus in t:datalist

2006-11-13 Thread Aneesha Govil
signature of the valuechangelistener is as follows: public void columnChangeListener(ValueChangeEvent event) {// code here }Anyone got any idea why this is not working? What am I doing wrong?Please help.Thanks,Aneesha On 11/13/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi,I have two drop-downs

Re: Query about SelectOneMenus in t:datalist

2006-11-13 Thread Aneesha Govil
Got this to work. I forgot to add " to the selectone menu.Regards,AneeshaOn 11/13/06, Aneesha Govil < [EMAIL PROTECTED]> wrote: Hi all,I am trying to solve this problem by using datatable instead of datalist and retrieving the current row using getRow. However, the valuechangelist

Re: Need help in display the page number in the data scroller

2006-11-14 Thread Aneesha Govil
How many total rows do you have in the table? And what is the rows attribute of your datatable?Regards,AneeshaOn 11/14/06, ying lcs < [EMAIL PROTECTED]> wrote:Hi,I am trying to build a dataScroller with page number like it here: http://www.irian.at/myfaces/dataScroller.jsfHere is my code, but when

JSF page with two backing beans

2006-11-14 Thread Aneesha Govil
Hi,I have a specific use-case in which I refresh a datatable based on the filter conditions entered by the user. The page consists of:1. Filter jsp included on top (Filter bean)2. Component binding to PanelGroup that holds dynamic Data table (Data bean) For both parts of the page, there are two bac

JSF Lifecycle question

2006-11-14 Thread Aneesha Govil
Hi,How is it determined which components need to be reloaded when a component is submitted or an action is executed?I cannot get my JSF page to reload a datatable that uses component binding on page submit. Does using sub-views affect any behaviour, i.e., only the subview is refreshed, the other c

Re: creating a dynamic code for a group of radio buttons

2006-11-14 Thread Aneesha Govil
Hi,I haven't constructed radio buttons dynamically but in general, to do something like this..HtmlSelectOneRadio selectOneRadio = new HtmlSelectOneRadio();   selectOneRadio.setId("choicesRadioButtons");//TODO: componentID  selectOneRadio.setLayout("spread");selectOneRadio.setValue(displayValue);//

Re: JSF Lifecycle question

2006-11-14 Thread Aneesha Govil
o it in the setter (or in > an action-method).>> regards,>> Martin>> On 11/14/06, Aneesha Govil <[EMAIL PROTECTED]> wrote:> > Hi,> > > > How is it determined which components need to be reloaded when a component> > is submitted or an action is executed?

Question on t:calendar popup value binding

2006-11-15 Thread Aneesha Govil
Hi,I am trying to use a calendar popup. What should be the type of the property that binds to the value of the popup? I looked at the examples source, it uses a date. Does it have to be a Date or can I use a String for the same? Which date format does it assume by default, e.g. - mm/dd/ or wha

Re: Question on t:calendar popup value binding

2006-11-15 Thread Aneesha Govil
I used a value binding to a String but the value did not get populated, however it works for a date. Do I have to write a custom converter? Can I find more information about writing custom converters for JSF components somewhere? Thanks,AneeshaOn 11/15/06, Aneesha Govil <[EMAIL PROTECTED]>

t:inputDate display seconds

2006-11-15 Thread Aneesha Govil
Hi, I would like to display seconds as well in the t:inputDate component. Right now, it just gives me Date-Month-Year-Hours-Mins. I am using type="both". Any idea how can I set it to display seconds too? Thanks, Aneesha

CommandLinks and CommandButton stop working with t:inputDate

2006-11-16 Thread Aneesha Govil
Hi, I have a complex form to accept input from the user. I just put t:inputDate into it. It is inside a dynamically created datatable. If the value of the t:inputDate is null (no date is present), everything is rendered correctly. The inputDate component is blank, as expected. However, if I click

Re: creating a dynamic code for a group of radio buttons

2006-11-16 Thread Aneesha Govil
The number of columns and number of rows is not fixed and all the radio buttons need to be in the same group. Any advice would be appreciated, -- *From:* Aneesha Govil [mailto:[EMAIL PROTECTED] *Sent:* Tuesday, November 14, 2006 4:58 AM *To:* MyFaces Discussion *S

Re: t:inputDate display seconds

2006-11-16 Thread Aneesha Govil
Figured this, using type="full". Aneesha On 11/16/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi, I would like to display seconds as well in the t:inputDate component. Right now, it just gives me Date-Month-Year-Hours-Mins. I am using type="both". Any idea h

Re: general myfaces performance question

2006-11-16 Thread Aneesha Govil
Is it alright to use Trinidad while it is still in the incubator? Aneesha On 11/16/06, Martin Marinschek <[EMAIL PROTECTED]> wrote: He should definitely take the Trinidad component set for high performance requirements, with this, you're in the same region as Struts for performance (probably b

Re: general myfaces performance question

2006-11-16 Thread Aneesha Govil
their webapps. Apart from this, the usage of trinidad is emerging, also in some real-world web-apps. cheers, Gerald On 11/16/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: > Is it alright to use Trinidad while it is still in the incubator? > > Aneesha > > On 11/16/06, Martin Ma

Re: general myfaces performance question

2006-11-16 Thread Aneesha Govil
works, I am on check the trinidad wiki for nbuilds (from continuum) http://wiki.apache.org/myfaces/Trinidad On 11/16/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: > Yes, I am aware of the Oracle connection. When I was evaluating what to use > for my project, I could not find a download l

Re: general myfaces performance question

2006-11-16 Thread Aneesha Govil
Found it on the Wiki - [EMAIL PROTECTED] Sometimes it's difficult to remember that wiki is more correct than the website. Thanks. Aneesha On 11/16/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Well how do I subscribe to the mailing list? The subscribe links aren't l

Re: general myfaces performance question

2006-11-16 Thread Aneesha Govil
) exceeded threshold Any idea where I can get support on this? Thanks, Aneesha On 11/16/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Found it on the Wiki - [EMAIL PROTECTED] Sometimes it's difficult to remember that wiki is more correct than the website. Thanks. Aneesha On 11/16/06, An

Tomahaqk t:inputDate onblur

2006-11-22 Thread Aneesha Govil
Hi, I want to submit the value of the component when the focus changes. I am using the HtmlInputDate class to create the t:inputDate component dynamically. However, I cannot find a setOnBlur method in this class. Strangely, the attribute appears on the TLD document of tomahawk [1] but not on the

Re: Tomahaqk t:inputDate onblur

2006-11-23 Thread Aneesha Govil
Does anyone have an idea about this? I am not able to save values because of this problem. :( Thanks, Aneesha On 11/23/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi, I want to submit the value of the component when the focus changes. I am using the HtmlInputDate class to crea

t:datatable sort only current page

2006-11-29 Thread Aneesha Govil
Hi, I am using a t:datatable with paginator. I need to provide a mechanism to sort only the rows displayed on the current page of the table onclick of the header. For this, I used javascript but now all the columns have become sortable. I need to be able to configure which columns would allow sor

Patch submission queries

2006-11-29 Thread Aneesha Govil
Hi, I want to submit a patch for this issue https://issues.apache.org/jira/browse/TOMAHAWK-802 I think it would be a minor change. However, I do not have enough time to set up a project and build. Can I simply change files and build with Maven and verify there are no build errors? Can I build on

Re: Patch submission queries

2006-11-29 Thread Aneesha Govil
On 11/30/06, Simon Kitching <[EMAIL PROTECTED]> wrote: I would recommend writing your own class (in your own package namespace) that subclasses HtmlInputDate. Add the methods that are needed. You can then add a tag to your web.xml to map the component id used by the InputDateTag to your subcla

Custom date component attributes

2006-11-30 Thread Aneesha Govil
Hi, I am creating a date component with some additional attributes on top of t:inputdate. Do I need to add only the new attributes to component tag or do I also need to add the attributes already a part of parent HtmlInputDate? Thanks! Aneesha

Re: Installation FAQ?

2006-11-30 Thread Aneesha Govil
You can download the examples from here - http://people.apache.org/builds/myfaces/nightly/ Regards, Aneesha On 11/30/06, Reinout van Schouwen <[EMAIL PROTECTED]> wrote: Hello all, Could someone point me to a FAQ or tutorial that describes the installation of MyFaces to a (relative) newbie?

Re: Installation FAQ?

2006-11-30 Thread Aneesha Govil
On 11/30/06, Reinout van Schouwen <[EMAIL PROTECTED]> wrote: Op do, 30-11-2006 te 17:30 +0530, schreef Aneesha Govil: > You can download the examples from here - > http://people.apache.org/builds/myfaces/nightly/ Thanks for your help. I see only myfaces-tobago and myfaces-tomahawk

Re: Custom date component attributes

2006-11-30 Thread Aneesha Govil
On 12/1/06, Simon Kitching <[EMAIL PROTECTED]> wrote: Aneesha Govil wrote: > Hi, > > I am creating a date component with some additional attributes on top of > t:inputdate. Do I need to add only the new attributes to component tag > or do I also need to add the attribu

Re: Sun RI vs MyFaces

2006-12-01 Thread Aneesha Govil
Apart from whatever has already been said.. I did some research when we were deciding this for my project. Though I don't have references now, I read at a few places that there are lesser issues with MyFaces and get fixed/support easily as compared to Sun's RI. Not sure if that is correct though.

Slightly off-topic: Page in Firefox is messed in IE

2006-12-10 Thread Aneesha Govil
Hi, I am developing a display layout using MyFaces and Tomahawk. It is a complex layout with lots of nested tables and styling. I am developing on linux so did not test it on IE. Today I tested it on IE and the page is completely messed on IE. The table column width and borders are not even close

Re: Slightly off-topic: Page in Firefox is messed in IE

2006-12-11 Thread Aneesha Govil
On 12/11/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: Your best bet is to ask your questions against google for specific rendering issues. Do not look at the JSF code, but rather the generated HTML. IE has tons of bugs that Microsoft will never fix (especially on IE6). Also, IE 6 doesn't suppo

Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
Hi, I am migrating my JSF app from Tomcat 5.5.17 to JBoss 4.0.3 SP1. I followed the instructions at [1] however, before that I was just getting an error for tomahawk jars as "the absolute uri http://myfaces.apache.org/tomahawk was not found in web.xml or jars ...". After following the instruction

Re: Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
Nope, I am not using facelets. Thanks, Aneesha On 12/13/06, Andreas Berger <[EMAIL PROTECTED]> wrote: Do you use facelets? If so, check if you put a tomahawk.taglib.xml (needed by faclets) in your WEB-INF directory. 2006/12/13, Aneesha Govil <[EMAIL PROTECTED]>: > Hi, > &

Re: Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
That's what I thought too but when it wouldn't work, I thought I'd give it a try. No luck. :( Thanks, Aneesha On 12/13/06, Jeff Bischoff <[EMAIL PROTECTED]> wrote: I don't know why that wiki page tells you to add the SourceCodeServlet, that is only for the example

Re: Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
ED]> wrote: > > Do you use facelets? If so, check if you put a tomahawk.taglib.xml > (needed by faclets) in your WEB-INF directory. > > 2006/12/13, Aneesha Govil <[EMAIL PROTECTED]>: > > Hi, > > > > I am migrating my JSF app from Tomcat 5.5.17 to JBoss

Re: Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
fest. 2006/12/13, Aneesha Govil <[EMAIL PROTECTED]>: > Well the exact web.xml is really long and has a lot of other existing > application stuff in it. However, I copied all the below elements to that > web.xml. If this doesn't point to anything, I can copy the exact web.x

Re: Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
Hi, It works after I copy the jat files in WEB-INF/lib of the war file. It's working now :D Thanks! Regards, Aneesha On 12/13/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: I put it in the manifest and in tomcat/jsf-libs folder of JBoss... I will try putting it in the war. Aneesh

Re: Jboss and Myfaces problem

2006-12-13 Thread Aneesha Govil
Pardon me, "jar" files. On 12/14/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi, It works after I copy the jat files in WEB-INF/lib of the war file. It's working now :D Thanks! Regards, Aneesha On 12/13/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: > > I put

Re: http://java.sun.com/jsf/html cannot be resolved

2006-12-13 Thread Aneesha Govil
Hi Dave, I do not think that it would work that way. You might want to look at [1] and [2]. [1] http://www.nabble.com/Jboss-and-Myfaces-problem-tf2814749.html [2] http://wiki.apache.org/myfaces/From_1.1.1_to_1.1.3_with_Jboss Hope that helps. Aneesha On 12/14/06, Dave <[EMAIL PROTECTED]> wrote:

Tomahawk and JBoss

2006-12-14 Thread Aneesha Govil
Hi all, I was looking for information on JBoss Seam and posted a thread on the JBoss Seam forum. I would like you to see [1]. I do not understand why they have such an opinion. What are your thoughts on this? Does anybody have any experience on using tomahawk on JBoss? Any tips/pointers on wheth

Re: Tomahawk and JBoss

2006-12-14 Thread Aneesha Govil
On 12/14/06, Craig McClanahan <[EMAIL PROTECTED]> wrote: On 12/14/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: > > Hi all, > > I was looking for information on JBoss Seam and posted a thread on the > JBoss Seam forum. I would like you to see [1]. I do not underst

Re: Tomahawk and JBoss

2006-12-14 Thread Aneesha Govil
On 12/14/06, Matthias Wessendorf <[EMAIL PROTECTED]> wrote: > Well, I did some research and what I could find was mostly configuration > problems. People were trying to find out how to configure tomahawk but > asking for help on the Seam forum instead of here. Gavin says they do not > recommend

Re: Tomahawk and JBoss

2006-12-14 Thread Aneesha Govil
On 12/14/06, Mario Ivankovits <[EMAIL PROTECTED]> wrote: Hi! >> Well I just wanted to know if anyone else had come across issues >> here. Sorry >> if it is off-topic. > > no, it's fine. I am now also interested in *deep* details. Yeah, me too. It would be better to help getting things better in

Re: Tomahawk and JBoss

2006-12-14 Thread Aneesha Govil
Well I found couple of issues with Seam-Tomahawk combination. Posting here for future reference, if anyone is interested. [1] http://www.jboss.com/index.html?module=bb&op=viewtopic&t=85212 [2] http://www.jboss.com/index.html?module=bb&op=viewtopic&t=89231 --Aneesha.

Re: [Off-topic?] Image title, link title not showing up as tooltip

2006-12-15 Thread Aneesha Govil
It's working in Firefox on Windows. Duh. Please ignore the message. Thanks, Aneesha On 12/15/06, Aneesha Govil <[EMAIL PROTECTED]> wrote: Hi, I have a dynamically-constructed datatable and a static table (in f:verbatim tags) that display images, links and a bunch of other compo

[Off-topic?] Image title, link title not showing up as tooltip

2006-12-15 Thread Aneesha Govil
Hi, I have a dynamically-constructed datatable and a static table (in f:verbatim tags) that display images, links and a bunch of other components. In the beginning when I was developing, the title attribute that I had set for links and images was showing up as a tooltip. However, now after compl

Re: [Off-topic?] Image title, link title not showing up as tooltip

2006-12-16 Thread Aneesha Govil
e-attribute. According to www firefox does it correctly... Solution: render the tooltip in both attributes and you get the tooltip in both broswers... hth Alexander -- *From:* Aneesha Govil [mailto:[EMAIL PROTECTED] *Sent:* Friday, December 15, 2006 12:25 PM *T

PropertyNotFoundException - Base is null

2006-12-19 Thread Aneesha Govil
Hi, I am trying to integrate my JSF pages with an existing JSP application. I have edited a JSP and removed most of JSP stuff in it and added JSF. I added a commandButton as follows: However, when I click this button, I do get the alert and then the exception below. javax.faces.el.PropertyN

Re: PropertyNotFoundException - Base is null

2006-12-19 Thread Aneesha Govil
Thanks for trying to help. It still doesn't work after making that change. :-( Any other ideas? Aneesha On 12/19/06, Paul Spencer <[EMAIL PROTECTED]> wrote: Just a guess, try instead of : The value attribute is referencing the property, not the getter. Paul Spencer Aneesha

Newbie help

2006-09-20 Thread Aneesha Govil
Hi All,I am new to JSF and MyFaces. I cannot find specific instructions on how to install and configure and use MyFaces. I have downloaded the myfaces-core-1.1.4-bin.tar.gz file and extracted it. It does not have any WEB-INF folder as mentioned at some places. The Installation and configuration pag

Re: Newbie help

2006-09-20 Thread Aneesha Govil
On 9/20/06, Christoph Lassner <[EMAIL PROTECTED]> wrote: Hi Aneesha,you have to copy the contents of the $release_dir/lib folder to your WEB-INF/lib folder and configure MyFaces in several steps with your web.xmland faces-config.xml. This is all described here:http://myfaces.apache.org/gettingstart

Re: Newbie help

2006-09-20 Thread Aneesha Govil
On 9/20/06, Sanoop Kuniel <[EMAIL PROTECTED]> wrote: The myfaces examples no longer exist at that url. Well it would be nice if the Getting started page is corrected then. Thanks,Aneesha

Re: Newbie help

2006-09-20 Thread Aneesha Govil
On 9/20/06, David Delbecq <[EMAIL PROTECTED]> wrote: Hi,for the moment thereis no more example build of myface. However, you canstill download the 1.1.1 example version in the archives:http://archive.apache.org/dist/myfaces/binaries/ Thanks a lot! That  would definitely help. The libs are older bu

MyFaces and Ajax

2006-09-20 Thread Aneesha Govil
Hi,I have to start developing an application using JSF and Ajax. We've chosen MyFaces implementation of JSF. My question is, is there any way to make them work together without writing a lot of code?I can see n number of frameworks and have no idea which one to use. On the other hand, I am new to b

Re: MyFaces and Ajax

2006-09-20 Thread Aneesha Govil
On 9/20/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: Ajax4JSF and AjaxAnywhere both work just fine with MyFaces for partialpage refreshingHow difficult is to accomplish this without using a framework? Are there any ajax-enabled components for MyFaces? How are they different from a framework? Than

Re: Newbie help

2006-09-20 Thread Aneesha Govil
On 9/20/06, Mike Kienenberger <[EMAIL PROTECTED]> wrote: If someone opens a JIRA issue on fixing the getting started page,it'll eventually get fixed.   It'll get fixed faster if the issue alsohas a patch.Logged an issue on JIRA. This is the URL - https://issues.apache.org/jira/browse/MYFACES-1414R

Re: MyFaces and Ajax

2006-09-20 Thread Aneesha Govil
On 9/20/06, Gerald Müllan <[EMAIL PROTECTED]> wrote: Updating some parts of the page through ajax is very easy with thehelp of such a framework (in the meantime this is also possible withsandbox ppr, but its only incubation status). Also some other basicajax stuff. But if you need some more special

selectOneMenu and selectItem sample

2006-09-21 Thread Aneesha Govil
Hi,I need to create a drop drown and a submit button. On clicking the submit button I want to display some data depending on the selected item in the dropdown.I cannot find a simple tutorial that explains how to accomplish this. How do I access the selected item in my java bean? Is it automatically

Re: selectOneMenu and selectItem sample

2006-09-21 Thread Aneesha Govil
On 9/21/06, Stefan Puchmann <[EMAIL PROTECTED]> wrote: Hi,look at this page: http://www.exadel.com/tutorial/jsf/jsftags-guide.htmlcheers,StefanI've looked at that. It doesn't tell me how to code in a Java Bean. Can anyone provide any other resources for a sample? I have written some code but the se

Re: selectOneMenu and selectItem sample

2006-09-21 Thread Aneesha Govil
Hi,I am using navigation to load another JSP according to what was selected in the drop down. However in the getPageToDisplay method below, the selectedItem is null and there is a null pointer exception. So I get an error "Error calling action method of component...". Does anyone have any idea how

  1   2   >