[JBoss JIRA] Created: (RF-10851) tables filtering: filterExpression could be only boolean
by Ilya Shaikovsky (JIRA)
tables filtering: filterExpression could be only boolean
--------------------------------------------------------
Key: RF-10851
URL: https://issues.jboss.org/browse/RF-10851
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-tables
Affects Versions: 4.0.0.Final
Reporter: Ilya Shaikovsky
AbstractColumn should have
public abstract Object getFilterExpression();
instead of
public abstract Boolean isFilterExpression();
found during migrating of the modifiable model sample from 3.3.x to arrangeable model from 4.x
With that issue convinient DB filtering in custom model not looks possible(at least without some additional parameters which are not looks good when we already have special expression attribute) for that sample with hibernate and criteria's.
Discussed with Konstantin - he agree with that and I really vote for it to be made in near time (we really need to push our advanced models)
If need I could do all necessary checks and apply that as I really wanted to show such more advanced sample for the book too.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 7 months
[JBoss JIRA] Created: (RF-10855) styleClass attribute doesn't work properly for h:comandButton and a4j:commandButton if setting org.richfaces.CONTROL_SKINNING as enabled.
by Gary Hu (JIRA)
styleClass attribute doesn't work properly for h:comandButton and a4j:commandButton if setting org.richfaces.CONTROL_SKINNING as enabled.
-----------------------------------------------------------------------------------------------------------------------------------------
Key: RF-10855
URL: https://issues.jboss.org/browse/RF-10855
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Gary Hu
If org.richfaces.CONTROL_SKINNING is set as enabled, then the styleClass attribute doesn't work properly for h:commandButton and a4j:commandButton. But it works fine with h:commandLink and a4j:commandLink.
here is an example:
<style type="text/css">
.test {
color: green;
font-size: 22px;
font-family: Verdana,Arial;
border:1px;
height:50px;
width:50px;
font-weight:bold;
background-color: yellow;
}
</script>
<f:view>
<h:form id="holidayMasterDetailsForm">
<h:commandButton id="testBtn" value="test" styleClass="test" />
<h:commandLink id="testLink" value="link test" styleClass="test" />
<a4j:commandButton id="testa4jbtn2" value="a4j button" styleClass="test" />
<a4j:commandLink id="testa4jlink" value="a4j link" styleClass="test" />
</h:form>
</f:view>
The css class test is attached to the components. Some properties, such as height and width, work fine. But the properties color, background-colo, font, etc, don't work.
If setting org.richfaces.CONTROL_SKINNING as disabled, the styleClass attribute works fine but the richfaces components lose skin.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 7 months
[JBoss JIRA] Created: (RF-10863) autocomplete: server side behavior events seems not supported
by Ilya Shaikovsky (JIRA)
autocomplete: server side behavior events seems not supported
-------------------------------------------------------------
Key: RF-10863
URL: https://issues.jboss.org/browse/RF-10863
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.Final
Reporter: Ilya Shaikovsky
<rich:autocomplete mode="cachedAjax" tokens=", " minChars="0"
autoFill="false" selectFirst="false"
autocompleteMethod="#{autocompleteBean.autocomplete}" valueChangeListener="#{autocompleteBean.vcl}">
<a4j:ajax listener="#{autocompleteBean.list}" event="change"/>
</rich:autocomplete>
<h:inputText>
<a4j:ajax listener="#{autocompleteBean.list}" event="change"/>
</h:inputText>
both ajax works.
however:
<rich:autocomplete mode="cachedAjax" tokens=", " minChars="0"
autoFill="false" selectFirst="false"
autocompleteMethod="#{autocompleteBean.autocomplete}" valueChangeListener="#{autocompleteBean.vcl}">
<a4j:ajax listener="#{autocompleteBean.list}" event="valueChange"/>
</rich:autocomplete>
<h:inputText>
<a4j:ajax listener="#{autocompleteBean.list}" event="valueChange"/>
</h:inputText>
throws /richfaces/autocomplete/samples/cachedAjax-sample.xhtml @28,71 <a4j:ajax> valueChangeevent is not supported for the UIAutocomplete for autocomplete. and UIInput works fine.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 7 months