| Author |
Message |
|
|
venu_dvmr wrote:
Unfortunately after ever partial submit you have to reset the events back. If you using 1.8 or greater then you can use Ice.onAsynchronousReceive(id, callback);
Hi Venu_dvmr,
Could you please share how you use Ice.onAsynchronousReceive(id, callback) to make jQuery work in ICEfaces 1.8? I saw many users here are struggling on this issue. Thanks a lot.
|
 |
|
|
kaicheung wrote:
Does someone know of a temporary workaround?
If your project also use Seam, you can use <s:graphicImage> instead.
|
 |
|
|
|
I have the exactly same problem after upgrading to 1.8.2. It seems that the byte image was cached in somewhere.
|
 |
|
|
Hi there,
I am wondering whether it is possible to use SIMILE Timeline http://www.simile-widgets.org/timeline/. Thanks.
|
 |
|
|
ken.fyten wrote:
2. At a situation of selectInputText being wrapped in panelPopup, on IE 8.0, selectInputText drop list is displayed out of panelPopup. On FF, it is displayed correctly(below input field);
It would be helpful if you could attach a small test app. that demonstrates this issue.
It is easy to reproduce it by copying the selectInputText demo codes into the panelPopup demo codes in the ICEfaces component-showcase 1.8.2-RC1 example, as followings:Code:
<ice:panelPopup id="draggablePnlPop" .......
<f:facet name="body">
<ice:panelGroup styleClass="popupBody">
<ice:outputText
value="#{msgs['page.selectInputText.htmlDirections']}"/>
<ice:selectInputText id="AutoCmpTxtFace"
rows="#{selectInputText.cityListLength}"
width="300"
value="#{selectInputText.selectedCityValue2}"
valueChangeListener="#{selectInputText.selectInputValueChanged}"
listVar="city"
listValue="#{selectInputText.cityMatchPossibilities}">
<!-- facet is used to define area used in popup -->
<f:facet name="selectInputText">
<ice:panelGrid columns="3"
columnClasses="cityCol,stateCol,zipCol">
<ice:outputText id="AutoCmpCty" value="#{city.city}"/>
<ice:outputText id="AutoCmpSt" value="#{city.state}"/>
<ice:outputText id="AutoCmpZip" value="#{city.zip}"/>
</ice:panelGrid>
</f:facet>
</ice:selectInputText>
</ice:panelGroup>
</f:facet>
</ice:panelPopup>
|
 |
|
|
Hi there,
After testing some features on the 1.8.2.-RC1, I found some possible regression issues:
1. On collapsible panel, a small squre spot appears on the header of collapsible panel (see attachement);
2. At a situation of selectInputText being wrapped in panelPopup, on IE 8.0, selectInputText drop list is displayed out of panelPopup. On FF, it is displayed correctly(below input field);
3. PanelTooltip popup always moves with mouse cursor moving, it is not possible to move mouse cursor to the panelTooltip popup again.
Thanks.
|
 |
|
|
|
After upgrading to ICEfaces 1.8.2-RC1, I found ice:graphicImage in ice:panelSeries tag cannot correctly display byte image. All displayed images seem come from the last image byte data in the panelSeries list. It worked on 1.8.1.
|
 |
|
|
It looks that
Code:
<s:fragment rendered="#{foo.isInstance('Foo')}">
<ui:include src="/foo.xhtml">
<ui:param name="instance" value="#{foo}"/>
......
fails to work in both 1.8.1 and 1.8.2-RC1, but it works on 1.8.0. But after changing it to JSTL code <c:if test="#{foo.isInstance('Foo')}">, it works on all 1.8.0, 1.8.1 and 1.8.2.
|
 |
|
|
|
Great! Thank you sooooo much, mwengren and venu_dvmr. It is very helpful for me to make jQuery work in ICEfaces. I really appreciate your kind help!!!
|
 |
|
|
Hi Venu_dvmr,
Could you please post some code snippets to show how to invoke them from ice tag, i.e. ice:commandLink or ice:selectBooleanCheckbox? Thanks a lot in advance.
|
 |
|
|
|
Hi Micah, Do you make the Ice.onAsynchronousReceive invoking work? Thanks.
|
 |
|
|
venu_dvmr wrote:
Code:
<body id="document:body">
<script type="text/javascript">
Ice.onAsynchronousReceive('document:body', function() {
alert('onAsynchronousReceive Callback!');
});
</script>
Hi Venu_dvmr, could you please give some code snippets to show how to call the "Ice.onAsynchronousReceive..." method from a jsf page. Thank you very much in advance.
|
 |
|
|
|
ICEfaces 1.8.0. Thanks.
|
 |
|
|
Hi there,
When I tried to monitor session size, I got the following exception. I am not sure whether the MenuItem should implements Serializable or not. Thanks.
22:31:50,031 ERROR [SessionControl] Could not get the session size
java.io.NotSerializableException: com.icesoft.faces.component.menubar.MenuItem
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1081)
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
at java.util.ArrayList.writeObject(ArrayList.java:569)
at sun.reflect.GeneratedMethodAccessor544.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
|
 |
|
|
Hi there,
When I monitored sessions size, I found a session with attribute of "Icesoft_DnDCache_Key" used around 130KB within a total 139KB session size. Can anybody explain it for me? Thank you very much in advance.
|
 |
|
|