[JBoss JIRA] Created: (RF-10391) rich:messages gets events from single validator only
by Alexander Smirnov (JIRA)
rich:messages gets events from single validator only
----------------------------------------------------
Key: RF-10391
URL: https://issues.jboss.org/browse/RF-10391
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-validators
Affects Versions: 4.0.0.Milestone6
Reporter: Alexander Smirnov
In the developer example, the only messages from first input field displayed on <riich:messages> component. Separate <rich:message> widgets works as expected on the same page.
Probably, there is a problem in richfaces.Message JavaScript.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Updated: (RF-10398) PopupPanel: modal panels called one from another. Second one do not overlaps the first.
by Ilya Shaikovsky (JIRA)
[ https://issues.jboss.org/browse/RF-10398?page=com.atlassian.jira.plugin.s... ]
Ilya Shaikovsky updated RF-10398:
---------------------------------
Attachment: ppppp.png
> PopupPanel: modal panels called one from another. Second one do not overlaps the first.
> ---------------------------------------------------------------------------------------
>
> Key: RF-10398
> URL: https://issues.jboss.org/browse/RF-10398
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.0.0.Milestone5
> Reporter: Ilya Shaikovsky
> Assignee: Nick Belaevski
> Attachments: ppppp.png
>
>
> code
> <rich:popupPanel id="modalPanel8" header="Modal panel" width="350"
> height="150">
> <h:form>
> <h:panelGrid>
> <h:inputText value="#{userBean.name}" />
> <h:inputText value="#{userBean.age}" />
> <a4j:commandButton value="Close" id="close"
> onclick="#{rich:component('modalPanel8')}.hide();return false;" />
> <a4j:commandButton value="Save and Close" id="save"
> reRender="input"
> oncomplete="if (#{facesContext.maximumSeverity==null}) #{rich:component('modalPanel8')}.hide();" />
> </h:panelGrid>
> </h:form>
> </rich:popupPanel>
> <a4j:outputPanel ajaxRendered="true">
> <rich:popupPanel id="msgPanel" modal="true" zindex="101"
> header="Correct your input!" autosized="true"
> show="#{facesContext.maximumSeverity!=null}">
> <h:messages ajaxRendered="true" style="color:red" />
> <a href="#" onclick="#{rich:component('msgPanel')}.hide()">Hide</a>
> </rich:popupPanel>
> </a4j:outputPanel>
> 1) problem when panel with messages appears - first one still available.
> 2) making larger zindex on second - do not works because not applied to shadow div. if apply using firebug - works as I need.
> screen attached.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Created: (RF-10347) Client API: Select: selection management problems
by Ilya Shaikovsky (JIRA)
Client API: Select: selection management problems
-------------------------------------------------
Key: RF-10347
URL: https://issues.jboss.org/browse/RF-10347
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Milestone5
Reporter: Ilya Shaikovsky
Assignee: Pavel Yaschenko
Fix For: 4.0.0.CR1
<rich:select>
<f:selectItem itemValue="0" itemLabel="Option 1" />
<f:selectItem itemValue="1" itemLabel="Option 2" />
<f:selectItem itemValue="2" itemLabel="Option 3" />
<f:selectItem itemValue="3" itemLabel="Option 4" />
<f:selectItem itemValue="4" itemLabel="Option 5" />
</rich:select>
1) choose some value. getValue - return actually label and not a value - FAIL
+ if possible add getLabel which will works as getValue now, if not - create separate task for post_4f
2) setValue('3') - Option 3 should appears and item with "3" value should be choosen. But actually just input updated with "3"
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Issue Comment Edited: (RF-8685) implement set of event handlers onrow* (onrowmouseover, onrowclick and so on..) for dataTAble and ExtendedDataTable
by Anton Belevich (JIRA)
[ https://issues.jboss.org/browse/RF-8685?page=com.atlassian.jira.plugin.sy... ]
Anton Belevich edited comment on RF-8685 at 2/1/11 11:30 AM:
-------------------------------------------------------------
The following events were applied to ExtendedDataTable, CollapsibleSubTable and DataTable.
onrowclick
onrowdblclick
onrowmousedown
onrowmouseup
onrowmouseover
onrowmousemove
onrowmouseout
onrowkeypress
onrowkeydown
onrowkeyup
was (Author: abelevich):
The following events were applied to ExtendedDataTable and DataTable.
onrowclick
onrowdblclick
onrowmousedown
onrowmouseup
onrowmouseover
onrowmousemove
onrowmouseout
onrowkeypress
onrowkeydown
onrowkeyup
> implement set of event handlers onrow* (onrowmouseover, onrowclick and so on..) for dataTAble and ExtendedDataTable
> -------------------------------------------------------------------------------------------------------------------
>
> Key: RF-8685
> URL: https://issues.jboss.org/browse/RF-8685
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: component-tables
> Affects Versions: 4.0.0.ALPHA1
> Reporter: Ilya Shaikovsky
> Assignee: Anton Belevich
> Priority: Critical
> Fix For: 4.0.0.Milestone6
>
>
> should be the same set as in 3.3.3 Final (including contextmenu event)
> The only change - event attributes should not be in camel case as it was before.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months
[JBoss JIRA] Issue Comment Edited: (RF-8685) implement set of event handlers onrow* (onrowmouseover, onrowclick and so on..) for dataTAble and ExtendedDataTable
by Anton Belevich (JIRA)
[ https://issues.jboss.org/browse/RF-8685?page=com.atlassian.jira.plugin.sy... ]
Anton Belevich edited comment on RF-8685 at 2/1/11 11:09 AM:
-------------------------------------------------------------
The following events were applied to ExtendedDataTable and DataTable.
onrowclick
onrowdblclick
onrowmousedown
onrowmouseup
onrowmouseover
onrowmousemove
onrowmouseout
onrowkeypress
onrowkeydown
onrowkeyup
was (Author: abelevich):
The following events were applied to ExtendedDataTable, CollapsibleSubTable and DataTable.
onrowclick
onrowdblclick
onrowmousedown
onrowmouseup
onrowmouseover
onrowmousemove
onrowmouseout
onrowkeypress
onrowkeydown
onrowkeyup
> implement set of event handlers onrow* (onrowmouseover, onrowclick and so on..) for dataTAble and ExtendedDataTable
> -------------------------------------------------------------------------------------------------------------------
>
> Key: RF-8685
> URL: https://issues.jboss.org/browse/RF-8685
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: component-tables
> Affects Versions: 4.0.0.ALPHA1
> Reporter: Ilya Shaikovsky
> Assignee: Anton Belevich
> Priority: Critical
> Fix For: 4.0.0.Milestone6
>
>
> should be the same set as in 3.3.3 Final (including contextmenu event)
> The only change - event attributes should not be in camel case as it was before.
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 11 months