[JBoss JIRA] Created: (RF-5380) dropSupport: "disableDefault" attribute doesn't work.
by Mikhail Vitenkov (JIRA)
dropSupport: "disableDefault" attribute doesn't work.
-----------------------------------------------------
Key: RF-5380
URL: https://jira.jboss.org/jira/browse/RF-5380
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.BETA3)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Add dragSupport and dropSupport zones following way:
<h:panelGrid columns="1" id="panel1">
<h:panelGroup id="column1">
<a4j:outputPanel>
<rich:dragSupport dragType="dragType1"></rich:dragSupport>
<h:outputText value="Drag it 1" />
</a4j:outputPanel>
</h:panelGroup>
</h:panelGrid>
<h:panelGrid columns="1" id="panel3">
<h:panelGroup id="column3">
<a4j:outputPanel>
<rich:dropSupport acceptedTypes="dragType1"></rich:dropSupport>
<h:outputText value="Drop from 1" />
</a4j:outputPanel>
</h:panelGroup>
</h:panelGrid>
#2. For dropSupport set action="main", where "main" is action navigation to the main page, defined in faces-config.xml
#3. Set ondrop="window.open('http://www.jboss.org/','_blank','width=200,height=200');"
#4. Set disableDefault="true".
#5. Navigate to page and make drag'n'drop content from "panel1" panelGrid to "panel3" panelGrid.(acceptedTypes="dragType1")
Actual behavior:
www.jboss.org opens in new window, then "main" navigation action works.
Try to append by hands "return false;" to the ondrop handler's content and repeat Step #5 - works fine: www.jboss.org opens in new window, current page remains.
--
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, 10 months
[JBoss JIRA] Created: (RF-6281) "header" and "footer" facets data cannot be exported to excel for rich dataTable, scrollableDataTable and extendedDataTable components.
by Mikhail Vitenkov (JIRA)
"header" and "footer" facets data cannot be exported to excel for rich dataTable, scrollableDataTable and extendedDataTable components.
---------------------------------------------------------------------------------------------------------------------------------------
Key: RF-6281
URL: https://jira.jboss.org/jira/browse/RF-6281
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.0.6, Safari 3.1, Opera 9.62, Chrome 1.0.154.43(3.3.0.GA, seam 2.0.2.GA)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
#1. Put jboss-seam-excel.jar and jxl.jar in your project lib folder.
#2. Configure web.xml following way:
<servlet>
<servlet-name>Document Store Servlet Excel</servlet-name>
<servlet-class>org.jboss.seam.excel.DocumentStoreServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Document Store Servlet Excel</servlet-name>
<url-pattern>*.xls</url-pattern>
</servlet-mapping>
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>seam-excel</param-value>
</context-param>
#3. Configure components.xml. Add following string:
In taglib: xmlns:excel="http://jboss.com/products/seam/excel"
<excel:document-store use-extensions="true"/>
#4. Add following code on the page:
<h:form id="theForm">
<rich:dataTable value="#{excel.dataModel}" var="dat"
id="theDataTable">
<f:facet name="header"><h:outputText value="header"/></f:facet>
<f:facet name="footer"><h:outputText value="footer"/></f:facet>
<rich:column>
<h:outputText value="#{dat}" />
</rich:column>
</rich:dataTable>
<h:commandLink value="Export"
action="#{org.jboss.seam.excel.excelExporter.export('theForm:theDataTable')}" />
</h:form>
#5. Navigate to the page, click "Export" and verify facets data presence in excel.
Actual behavior: facets don't display in excel. The same situation occur with rich scrollableDataTable and extendedDataTable.
But, when facets is placed inside <rich:column tag - data export works well.
--
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, 10 months
[JBoss JIRA] Created: (RF-5734) <a4j:outputPanel> produces javax.servlet.ServletException: duplicate Id for a component form:j_id6
by Bjoern Sonntag (JIRA)
<a4j:outputPanel> produces javax.servlet.ServletException: duplicate Id for a component form:j_id6
--------------------------------------------------------------------------------------------------
Key: RF-5734
URL: https://jira.jboss.org/jira/browse/RF-5734
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0, 3.2.2
Environment: java 1.6.11, Glassfish V2, Windows XP Prof
Reporter: Bjoern Sonntag
we've found one bug in the a4j:outputPanel - tag...
szenario :
In our project we have severals subprojects which have 2 webpages with simple navigation rule. Side A leads to side B and you can get from side B to side A, but when we go from side B to side A we got an exception :
javax.servlet.ServletException: duplicate Id for a component form:j_id6
We have following interesseting code in our jsps
<a4j:outputPanel layout="none" id="mainContentPanel">
<!-- here are some widgets, like outputLabel, inputText, rich:calendar etc. --!>
</a4j:outputPanel>
which we use like a tag to render several widgets, or not.
But when we replace the <a4j:outputPanel> with a <rich:panel> and navigate from side B to side A its works fine but our markup looks like a slap with a golf club. This behaviour is repeatable !
So we think there is a bug in the <a4j:outputPanel> or the Richfaces Framework have a problem with that.
When you google for ""duplicate id" Richfaces a4j" you can see many many posting, that have <a4j:outputPanel> as common ground.
with best regards
Bjoern
--
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, 10 months
[JBoss JIRA] Created: (RF-5645) ComboBox: request is sent twice if use onblur ajaxsupport.
by Alexander Dubovsky (JIRA)
ComboBox: request is sent twice if use onblur ajaxsupport.
----------------------------------------------------------
Key: RF-5645
URL: https://jira.jboss.org/jira/browse/RF-5645
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: 3.3.0.CR3
Reporter: Alexander Dubovsky
Assignee: Nick Belaevski
Source:
<h:panelGrid columns="4">
<h:outputText value="Model:" />
<rich:comboBox id="model" value="#{comboBox.modelSelected}">
<a4j:support event="onblur" reRender="snBox" />
<f:selectItems value="#{comboBox.selectItemListModel}" />
</rich:comboBox>
<h:outputText value="Serialnumber:" />
<rich:comboBox id="snBox" value="#{comboBox.snSelected}">
<a4j:support event="onblur" reRender="result" />
<f:selectItems id="sn" value="#{comboBox.selectItemListSn}" />
</rich:comboBox>
<h:inputText id="input" />
<h:commandButton value="Add a new SN" />
</h:panelGrid>
The 1th request is sent after selection of item in combo (using mouse), the 2th after onblur event.
--
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, 10 months
[JBoss JIRA] Created: (RF-5624) fileUpload: transfer error take place in flash mode under https.
by Mikhail Vitenkov (JIRA)
fileUpload: transfer error take place in flash mode under https.
----------------------------------------------------------------
Key: RF-5624
URL: https://jira.jboss.org/jira/browse/RF-5624
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.3.0
Environment: IE6, IE7, FF 3.1.3, Safari 3.1, Opera 9.62(3.3.0.CR3)
Reporter: Mikhail Vitenkov
Assignee: Nick Belaevski
Priority: Critical
#1. Deploy richfaces-demo under tomcat 6.0.16
#2. Modify server.xml(define ssl connector):
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"/>
#3. Run tomcat.
#4. Navigate to Rich Input->File Upload page.
#5. Check "Turn using flash on:" checkbox.
#6. Try to upload file with valid size(less than 1000000 bytes).
Actual behavior:
Trnasfer error occured. See screenshot.
--
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, 10 months