[JBoss JIRA] (RF-13099) Disabled input text is not visible
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13099?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13099:
-------------------------------
Sprint: (was: 5.0.0.Alpha2 - Sprint 3)
> Disabled input text is not visible
> ----------------------------------
>
> Key: RF-13099
> URL: https://issues.jboss.org/browse/RF-13099
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, skinning
> Reporter: Kush Kumar
> Assignee: Brian Leathem
> Priority: Minor
> Fix For: 4.5.0.Alpha1
>
> Attachments: Disabled_Input_Text_Issue.png
>
> Original Estimate: 15 minutes
> Remaining Estimate: 15 minutes
>
> Disabled input text is not visible -can you please help me out how can we make it visible or can we change the color of disabled text?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months
[JBoss JIRA] (RF-13099) Disabled input text is not visible
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13099?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13099:
-------------------------------
Sprint: 5.0.0.Alpha2 - Sprint 3
> Disabled input text is not visible
> ----------------------------------
>
> Key: RF-13099
> URL: https://issues.jboss.org/browse/RF-13099
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, skinning
> Reporter: Kush Kumar
> Assignee: Brian Leathem
> Priority: Minor
> Fix For: 4.5.0.Alpha1
>
> Attachments: Disabled_Input_Text_Issue.png
>
> Original Estimate: 15 minutes
> Remaining Estimate: 15 minutes
>
> Disabled input text is not visible -can you please help me out how can we make it visible or can we change the color of disabled text?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months
[JBoss JIRA] (RF-13099) Disabled input text is not visible
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13099?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13099:
-------------------------------
Sprint: (was: 5.0.0.Alpha2 - Sprint 2)
> Disabled input text is not visible
> ----------------------------------
>
> Key: RF-13099
> URL: https://issues.jboss.org/browse/RF-13099
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-input, skinning
> Reporter: Kush Kumar
> Assignee: Brian Leathem
> Priority: Minor
> Fix For: 4.5.0.Alpha1
>
> Attachments: Disabled_Input_Text_Issue.png
>
> Original Estimate: 15 minutes
> Remaining Estimate: 15 minutes
>
> Disabled input text is not visible -can you please help me out how can we make it visible or can we change the color of disabled text?
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months
[JBoss JIRA] (RF-12214) Pack plain skin with UI components distribution (the resource plugin needs to be fixed)
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-12214?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč reopened RF-12214:
-----------------------------
> Pack plain skin with UI components distribution (the resource plugin needs to be fixed)
> ---------------------------------------------------------------------------------------
>
> Key: RF-12214
> URL: https://issues.jboss.org/browse/RF-12214
> Project: RichFaces
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: resource handling
> Affects Versions: 4.2.1.Final
> Reporter: Nicolas Daniels
> Assignee: Lukáš Fryč
> Priority: Minor
> Labels: needs-qe
> Fix For: 4.5.0.Alpha1, 5.0.0.Alpha2
>
> Original Estimate: 30 minutes
> Remaining Estimate: 30 minutes
>
> The plain skin is not packed/compresses as other styles, mainly because images generation is failing due to null property values.
> It could be good to have it as well. Beside it, probably that image generation with null value should be handled.
> Of course, any failed image generation should not be referenced in resulting css.
> (Fyi, currently, generating plain skin is working despite the warnings but missing images are still referenced in resulting css. This is not really good for resources optimization ;-))
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months
[JBoss JIRA] (RF-13271) AjaxEventsProps is missing @onerror attribute
by Lukáš Fryč (JIRA)
Lukáš Fryč created RF-13271:
-------------------------------
Summary: AjaxEventsProps is missing @onerror attribute
Key: RF-13271
URL: https://issues.jboss.org/browse/RF-13271
Project: RichFaces
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Components: component
Affects Versions: 5.0.0.Alpha1, 4.3.4
Reporter: Lukáš Fryč
This attribute serves as a error event handler definable per component.
Note that AjaxProps was splitted to AjaxEventProps and AjaxProps: RF-13270
{code}
[lfryc@lfryc framework]$ ack getOnerror
src/main/java/org/richfaces/ui/input/autocomplete/AbstractAutocomplete.java
265: public abstract String getOnerror();
src/main/java/org/richfaces/ui/ajax/push/PushRendererBase.java
76: options.put("errorHandler", push.getOnerror());
src/main/java/org/richfaces/ui/ajax/push/AbstractPush.java
75: public abstract String getOnerror();
src/main/java/org/richfaces/ui/ajax/status/AbstractAjaxStatus.java
61: public abstract String getOnerror();
src/main/java/org/richfaces/ui/ajax/queue/AbstractQueue.java
73: public abstract String getOnerror();
src/main/java/org/richfaces/ui/ajax/ajax/AjaxClientBehavior.java
58: String getOnerror();
src/main/java/org/richfaces/ui/ajax/ajax/AjaxBehaviorRenderer.java
204: return behavior.getOnerror();
src/main/java/org/richfaces/ui/ajax/ajax/AjaxBehavior.java
254: public String getOnerror() {
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 5 months