inputHtml rich text editor

2007-04-05 Thread kal stevens
I am trying to get the inputHtml tag to work. Right now it is just a text editor, but does not have any rich text formatting, it appears to have no javascript capabiliites, and it does not submit the text to my bean. Tree2 works fine(client side), inputDate works fine, and file uploading works

extension filter

2007-03-28 Thread kal stevens
I am trying to get the inputHtml tag to work. Right now it is just a text editor, but does not have any rich text formatting. I assume it is a problem with my extension filter. I am wondering which extension filter to use org.apache.myfaces.webapp.filter.ExtensionsFilter or

forceID for datatable rows

2007-02-21 Thread kal stevens
I am using a tool Selenium to write automated test cases It uses the form ID and the ID of a link to navigate through the test case. That works great with anything that is not in a table, but for table elements I get something like the following _idJsp49:_idJsp108:0:_idJsp123 So I am wondering

myfaces 1.2 release date?

2007-02-14 Thread kal stevens
My boss asked me to look into updating the myfaces libraries, to get the new tags and a few bugs we have were fixed. We are using 1.1.3 myfaces, and 1.1.3 of tomahawk. A few of our bugs were fixed in 1.1.4/1.1.5, so I was considering upgrading to one of those I was just curious if I should wait

Does SelectItem value have to be a string?

2007-02-09 Thread kal stevens
I have the code pasted below, and I get the following error javax.servlet.ServletException: Value is no String (class=java.util.ArrayList, value=[[2820] three, [2821] emi, [2822] emi_uk, [2823] itn, [2824] abc, [2825] ae, [2826] boomchicago, [2827] chillitv, [2828] comedytime, [2829]

JSF dataTable Binding

2007-02-06 Thread kal stevens
Could someone help me out and tell me what is wrong with this I am trying to bind the current value through the iteration to my bean. pgb.weekList is a ListInteger pgb.weekIndex is an Integer pgb.daysOfWeek is a ListInteger x:dataTable id=listTableView

Re: JSF dataTable Binding

2007-02-06 Thread kal stevens
}/ Is that not supported? is there a better way of doing it? I assumed that because my value was a ListInteger, that the variable row would be an Integer, and I could bind it to my bean. Thanks On 2/6/07, Simon Kitching [EMAIL PROTECTED] wrote: kal stevens wrote: Could someone help me out and tell me what

Re: JSF dataTable Binding

2007-02-06 Thread kal stevens
() will only give you the table row, and not necessarily the value of your current integer in the list. On 2/6/07, kal stevens [EMAIL PROTECTED] wrote: I wanted the integer to be accessible through my java code. I could make it a UIData I guess. But because the Value in the table was a list

Re: JSF dataTable Binding

2007-02-06 Thread kal stevens
attributes to turn an nX1 list of data into a nXconstant matrix of data. You might also look at the t:schedule component since it sounds like you're really trying to do some kind of calendar work :-) On 2/6/07, kal stevens [EMAIL PROTECTED] wrote: Ok, it sounds like dataTable might

Re: Old error messages on a redirected page

2007-02-05 Thread kal stevens
validations. This myfaces wiki page talks about one solution ( wiki )http://wiki.apache.org/myfaces/How_The_Immediate_Attribute_WorksUsing the immediate attribute on command components. -Jay On 2/2/07, kal stevens [EMAIL PROTECTED] wrote: I have a page that is redirected in faces-config.xml file

Old error messages on a redirected page

2007-02-02 Thread kal stevens
I have a page that is redirected in faces-config.xml file And my problem is that on this page, if the user gives an invalid input there is an error message. I would like it if when the user refreshes the page (or hits a back breadcrumb) if that error message was not displayed again. Is there a

anyone know what the holdup on jsf 1.2 is?

2007-01-16 Thread kal stevens
The Specification was approved over 8 months ago, is myfaces undergoing active development? What is the difference between Shale and MyFaces? They are both JSF implementations right? Thanks Kal

isNodeExpanded in TreeState (tree2 tag)

2007-01-11 Thread kal stevens
It seems like the identity string passed into isNodeExpanded is based on the location of the tree node, and not the identity of that tree node. For instance I get 0:0 as an argument, when I expected ewtt30qh:8lsgl:n26wfl (the corresponding TreeNode's getIdentity() value) This is important

Re: tree2 problem with isLeaf() = true but getChildren().size 0

2007-01-02 Thread kal stevens
for getChildrenCount() to make sure your child node is not rendered. On 1/2/07, kal stevens [EMAIL PROTECTED] wrote: I was wondering if this is valid or if I am doing something wrong here. I have a node, that has children, but I don't want those children to be displayed in some situations. So

Re: tree2 problem with isLeaf() = true but getChildren().size 0

2007-01-02 Thread kal stevens
kal stevens [EMAIL PROTECTED] .com To MyFaces Discussion 01/02/2007 04:28 users@myfaces.apache.org PM cc

Re: tree2 problem with isLeaf() = true but getChildren().size 0

2007-01-02 Thread kal stevens
to create a use case for this On 1/2/07, Andrew Robinson [EMAIL PROTECTED] wrote: at the same time isLeaf() treeNode.getChildCount() == 0 should be synonymous. On 1/2/07, kal stevens [EMAIL PROTECTED] wrote: Thank you, I will write a test case. I guess my question can be boiled down