Re: svn commit: r490648 - /myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld

2006-12-27 Thread Dennis Byrne
Yeah, you wanna get it?

Dennis Byrne

>-Original Message-
>From: Wendy Smoak [mailto:[EMAIL PROTECTED]
>Sent: Thursday, December 28, 2006 12:06 AM
>To: 'MyFaces Development'
>Subject: Re: svn commit: r490648 - 
>/myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld
>
>On 12/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>> Author: dennisbyrne
>> Date: Wed Dec 27 20:55:26 2006
>> New Revision: 490648
>...
>>  &html_fishey_commandlink_attributes;
>
>Not part of this commit, but is "fishey" a typo?
>
>-- 
>Wendy
>




Re: svn commit: r490648 - /myfaces/tomahawk/trunk/sandbox/core/src/main/tld/myfaces_sandbox.tld

2006-12-27 Thread Wendy Smoak

On 12/27/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

Author: dennisbyrne
Date: Wed Dec 27 20:55:26 2006
New Revision: 490648

...

 &html_fishey_commandlink_attributes;


Not part of this commit, but is "fishey" a typo?

--
Wendy


[jira] Created: (TOMAHAWK-833) duplicate @id for fishEyeCommandLink

2006-12-27 Thread Dennis Byrne (JIRA)
duplicate @id for fishEyeCommandLink


 Key: TOMAHAWK-833
 URL: http://issues.apache.org/jira/browse/TOMAHAWK-833
 Project: MyFaces Tomahawk
  Issue Type: Bug
 Environment: current nightly build as of dec. 27, 2006
Reporter: Dennis Byrne
 Assigned To: Dennis Byrne
Priority: Minor


fishEyeCommandLink imports ui_command_attributes which imports which imports 
ui_component_attributes which imports faces_id_optional_attribute.  This causes 
a circular dependency because faces_id_optional_attribute is already imported 
by fishEyeCommandLink.  This results in a duplicate @id for fishEyeCommandLink.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (TOMAHAWK-832) duplicate TLD attributes in s:outputText

2006-12-27 Thread Dennis Byrne (JIRA)
duplicate TLD attributes in s:outputText


 Key: TOMAHAWK-832
 URL: http://issues.apache.org/jira/browse/TOMAHAWK-832
 Project: MyFaces Tomahawk
  Issue Type: Bug
 Environment: MyFaces nightly build as of Dec. 27, 2006
Reporter: Dennis Byrne
 Assigned To: Dennis Byrne
Priority: Minor


outputText imports standard_output_text_attributes and ui_output_attributes.  
However standard_output_text_attributes imports ui_output_attributes, creating 
a circular import.  This results in duplicate attributes in the TLD.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (TOMAHAWK-831) duplicate TLD attributes for commandButtonAjax

2006-12-27 Thread Dennis Byrne (JIRA)
duplicate TLD attributes for commandButtonAjax 
---

 Key: TOMAHAWK-831
 URL: http://issues.apache.org/jira/browse/TOMAHAWK-831
 Project: MyFaces Tomahawk
  Issue Type: Bug
 Environment: MyFaces Tomahawk Sandbox nightly release as of Dec. 27, 
2006
Reporter: Dennis Byrne
 Assigned To: Dennis Byrne
Priority: Minor


commandButtonAjax imports both html_button_attributes and 
standard_command_button_attributes, but standard_command_button_attributes 
imports html_button_attributes, creating a circular import.  The circular 
import creates duplicate attributes in the resulting TLD.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (TOMAHAWK-830) doesn't show preselected values

2006-12-27 Thread chintan parekh (JIRA)
[ 
http://issues.apache.org/jira/browse/TOMAHAWK-830?page=comments#action_12461018 
] 

chintan parekh commented on TOMAHAWK-830:
-

Hi,

There is an issue with  component. 

If I make it disabled="true" while rendering. it will pickup the preselected 
values from left list and display in the right list.  But if it 
disbaled="false" then it won't.

Can you guys provide a patch for this?

Thanks
Chintan 

>  doesn't show preselected values
> --
>
> Key: TOMAHAWK-830
> URL: http://issues.apache.org/jira/browse/TOMAHAWK-830
> Project: MyFaces Tomahawk
>  Issue Type: Bug
>  Components: New Component
>Affects Versions: 1.1.5-SNAPSHOT
> Environment: Os: Windows XP Browser: IE,Firefox
>Reporter: chintan parekh
>Priority: Blocker
>
>  am facing one issues with selectManyPickList. I am putting my code here. 
> JSP code:
> 
>
>
> 
><%-- Sandbox component --%>
>
> valueChangeListener="#{accessDelegationController.selectionChangedForOperations
>  }"
>
> value="#{accessDelegationController.selectedOperationsList}"
>immediate="true">
> value="#{accessDelegationController.operationsList }" />
>
>
>
> Java Code:
> Creating 2 Lists. one for SelectedValues and other for default values. 
> private List selectedOperationsList = new ArrayList();
> private List operationsList = new ArrayList();
> //here both lists have getter and setter method(which i have not mentioned 
> here)
> //logic to add values in above lists. (Note: I am iterating the values which 
> i am getting from backend. and adding to selectedOperationList list) 
> List OperationList1 = (List)Service1.getCreatedOperationRulesList();
>//Iterator for selected operation
>   Iterator iter = OperationList1.iterator();
>int i = 0;
>while( iter.hasNext()){
>Operation operation = (Operation)OperationList1.get(i);
>selectedOperationsList.add(new 
> SelectItem(Integer.toString(operation.getId()),operation.getName()));
>i++; 
>iter.next();
>}
> //same for default operation lists
>List operationList2=(List)Service2.getOperationsList();
>Iterator iter1 = operationList2.iterator ();
>int j = 0;
>while(iter1.hasNext()){
>Operation operation1 = 
> (Operation)operationList2.get(j);
>operationsList.add (new 
> SelectItem(Integer.toString(operation1.getId()),operation1.getName()));
>j++;
>iter1.next();
>}
> While rendering only left-hand side value comes.( i mean operationsList). 
> Right-hand side box(selecteOperationsList) contains no values. though both 
> the lists are having values in it. 
> I dont know what is the problem? can you please help me?
> Thanks
> Chintan

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Resolved: (TOBAGO-136) null TreeState in bean results in javascipt error and no tree at all

2006-12-27 Thread Volker Weber (JIRA)
 [ http://issues.apache.org/jira/browse/TOBAGO-136?page=all ]

Volker Weber resolved TOBAGO-136.
-

Resolution: Fixed

> null TreeState in bean results in javascipt error and no tree at all
> 
>
> Key: TOBAGO-136
> URL: http://issues.apache.org/jira/browse/TOBAGO-136
> Project: MyFaces Tobago
>  Issue Type: Bug
>  Components: Core
>Reporter: Volker Weber
> Assigned To: Volker Weber
> Fix For: 1.0.10
>
>
> if in tree tag the state attribute is set to a bean which is not initialized 
> (returns null)
>  no treeNodes are rendered (just a debug-level message in the log file) 
> and the rendered javascript produces an error.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira