[JBoss JIRA] (GTNPORTAL-2193) Cannot store Dashboard portlet attributes at the first time
by Hai Nguyen (Created) (JIRA)
Cannot store Dashboard portlet attributes at the first time
-----------------------------------------------------------
Key: GTNPORTAL-2193
URL: https://issues.jboss.org/browse/GTNPORTAL-2193
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Hai Nguyen
Assignee: Hai Nguyen
Until now, Dashboard portlet has a special way to store the data, so its attributes couldn't be saved at the first time, attributes means portlet theme, info bar, title, width, height ...
Steps to reproduce:
1/ Go to edit page
2/ Drag a dashboard portlet to the page
3/ Edit some portlet properties for the dashboard such as set show info bar, width, height, theme or icons...
4/ Finish page edition.
We can see the portlet doesn't save properly.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (GTNPORTAL-2218) No difference between the two selectbox: objectId is always null on UIFormSelectBox
by Trong Tran (Created) (JIRA)
No difference between the two selectbox: objectId is always null on UIFormSelectBox
-----------------------------------------------------------------------------------
Key: GTNPORTAL-2218
URL: https://issues.jboss.org/browse/GTNPORTAL-2218
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Trong Tran
Fix For: 3.2.0-M02
on org.exoplatform.webui.form.UIFormSelectBox
the object id is always null on onchange event due to
{code:java}
protected String renderOnChangeEvent(UIForm uiForm) throws Exception
{
return uiForm.event(onchange_, (String)null);
}
{code}
we must use this implementation
{code:java}
protected String renderOnChangeEvent(UIForm uiForm) throws Exception
{
return uiForm.event(onchange_, (String)getId());
}
{code}
To reproduce this problem:
# we have added two select box from The Form Generator Portlet
h5.( Groups --> Form Generator on the Administration bar)
# we add two select box
# we add this property "onchange=true" to this line
{code}
String[] select_1FieldName = ["jcrPath=/node/exo:fg_p_select_1", "defaultValues=item 1", "", "options=item 1,item 2", "onchange=true"];
{code}
# You can use the FireBug to see that there is no difference between the two selectBox as we can see here:
*The first*:
{code:xml}
<select onchange="javascript:eXo.webui.UIForm.submitEvent('4ab67916-d73a-4f2d-8450-d005c07329b2#UIDocumentForm','Onchange','&objectId=null')" name="/node/Select 1" class="selectbox">
<option value="item 1">item 1</option>
<option value="item 2">item 2</option>
</select>
{code}
*The Second*
{code:xml}
<select onchange="javascript:eXo.webui.UIForm.submitEvent('4ab67916-d73a-4f2d-8450-d005c07329b2#UIDocumentForm','Onchange','&objectId=null')" name="/node/Select 2" class="selectbox">
<option value="item 1">item 1</option>
<option value="item 2">item 2</option>
</select>
{code}
# And we note that *objectId=null*
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months
[JBoss JIRA] (GTNPORTAL-2192) Show broken pipe log on tomcat server
by Khoi Nguyen (Created) (JIRA)
Show broken pipe log on tomcat server
-------------------------------------
Key: GTNPORTAL-2192
URL: https://issues.jboss.org/browse/GTNPORTAL-2192
Project: GateIn Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Environment:
Reporter: Khoi Nguyen
- change content by new issue, the old one has ben duplicated and fixed
SEVERE: Could not render css /eXoResources/skin/Stylesheet-lt.css
ClientAbortException: java.net.SocketException: Broken pipe
at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:358)
at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:434)
at org.apache.tomcat.util.buf.ByteChunk.append(ByteChunk.java:349)
at org.apache.catalina.connector.OutputBuffer.writeBytes(OutputBuffer.java:381)
at org.apache.catalina.connector.OutputBuffer.write(OutputBuffer.java:370)
at org.apache.catalina.connector.CoyoteOutputStream.write(CoyoteOutputStream.java:89)
at org.apache.catalina.connector.CoyoteOutputStream.write(CoyoteOutputStream.java:83)
at org.exoplatform.portal.application.ResourceRequestFilter$1.write(ResourceRequestFilter.java:98)
at org.exoplatform.portal.resource.CachedStylesheet.writeTo(CachedStylesheet.java:71)
at org.exoplatform.portal.resource.SkinService.renderCSS(SkinService.java:355)
at org.exoplatform.portal.application.ResourceRequestFilter.doFilter(ResourceRequestFilter.java:127)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:421)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:637)
Caused by: java.net.SocketException: Broken pipe
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
14 years, 6 months