[JBoss JIRA] Created: (RF-6498) scrollableDataTable: table stay blank after scroll and broken after refresh
by Galustov Yurii (JIRA)
scrollableDataTable: table stay blank after scroll and broken after refresh
---------------------------------------------------------------------------
Key: RF-6498
URL: https://jira.jboss.org/jira/browse/RF-6498
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0, 3.2.2, 3.3.1
Environment: WinXP, Server2003
Tomcat6, Oracle Weblogic Server 10.3
IE6-7, FF 3.0.7, Chrome 1.0.154.48, Opera 9, Safari 3.2.2
Reporter: Galustov Yurii
Priority: Critical
1. After scroll, table send ajax request twice! and after second request table becomes blank until click on scrollbars.
For reproduce:
a) scroll down right table from top to bottom (you can see few error messages in log above)
2. Table broken and looks like simple html without any interactive.
For reproduce:
a) scroll down right table and select last row
b) select tab with name Third
c) select tab with name Users again
d) click on first row in left table
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 11 months
[JBoss JIRA] Created: (RF-5512) Scrollable DataTable cannot be used when adding @charset statement to css files.
by Rong Tao (JIRA)
Scrollable DataTable cannot be used when adding @charset statement to css files.
--------------------------------------------------------------------------------
Key: RF-5512
URL: https://jira.jboss.org/jira/browse/RF-5512
Project: RichFaces
Issue Type: Bug
Components: portal
Affects Versions: 3.2.2
Environment: windows xp + glassfish v2u2 + jdk 1.6
Reporter: Rong Tao
This is a very strange bug, when I add a statement '@charset "utf-8"' to a css file or the css section of the xhtml file, the Scrollable DataTable becomes very strange and cannot be used, the problems are:
1. the table header is not displayed.
2. scroll bar is not displayed.
3. cannot select any rows.
4. the 1st and 2nd columns are overlap.
Very easy to reproduce: download and deploy the demo scrollableDataTable.xhtml and DataTableScrollerBean.java; then add '@charset "utf-8"' to scrollableDataTable.xhtml, the <style> section of the page should be like this:
<style>
@charset "utf-8";
.scrolls{
width:300px;
height:200px;
overflow:auto;
}
</style>
Refresh the page and you will see the problems.
Not only "utf-8", other charset such as "iso-8859-1" can also cause the issue.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 11 months
[JBoss JIRA] Created: (RF-6789) Suggestion box ajax requests do not go through the global a4j:queue
by Nazaret Kazarian (JIRA)
Suggestion box ajax requests do not go through the global a4j:queue
-------------------------------------------------------------------
Key: RF-6789
URL: https://jira.jboss.org/jira/browse/RF-6789
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Reporter: Nazaret Kazarian
I have setup an a4j:queue on the page h:form. I have setup javascript event handlers on the onsubmit and oncomplete events of the queue. I have a suggestionBox inside the form. It seems that ajax requests triggered from the suggestionBox do not trigger the events on the queue. Therefore, I assume that the ajax requests are not going through the queue. I also have a simple h:inputText with an a4j:support. Ajax requests triggered from this component seem to work as expected, they go through the a4j:queue.
Here is a simple test case:
<input id="ajaxRequestsSubmitted" type="text" value="0" />
<input id="ajaxRequestsComplete" type="text" value="0" />
<h:form id="pageForm">
<a4j:queue
onsubmit="document.getElementById('ajaxRequestsSubmitted').value = (parseInt(document.getElementById('ajaxRequestsSubmitted').value) + 1)"
oncomplete="document.getElementById('ajaxRequestsComplete').value = (parseInt(document.getElementById('ajaxRequestsComplete').value) + 1)"
/>
<h:inputText id="testInput" value="#{myBean.testValue}" />
<rich:suggestionbox
id="testInput_suggBox"
for="testInput"
rules="none"
suggestionAction="#{myBean.myAction}"
var="result"
fetchValue="#{result.key}"
minChars="0"
nothingLabel="#{resourceBundle.no_results_found}"
usingSuggestObjects="true">
<h:column>
<h:outputText value="#{result.key}" />
</h:column>
<h:column>
<h:outputText value="#{result.value}" style="font-style:italic"/>
</h:column>
</rich:suggestionbox>
<h:inputText id="testInput2" value="#{myBean.testValue2}" >
<a4j:support event="onkeyup">
</a4j:support>
</h:inputText>
</h:form>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
16 years, 11 months