Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Invalid
-
Affects Version/s: 3.3
-
Fix Version/s: None
-
Component/s: ICE-Components
-
Labels:None
-
Environment:Local
-
ICEsoft Forum Reference:
-
Support Case References:
Description
I tried setting this page using ajax but it gives me error saying http://www.icesoft.com/icefaces/component, but no tag was defined for name: ajax
but I see that the Icefaces demo useses
<ace:dataTable id="carTable"
value="#{dataTablePaginator.carsData}"
var="car"
paginator="#{dataTablePaginator.paginator}"
paginatorPosition="#{dataTablePaginator.position}"
paginatorTemplate="{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown} {CurrentPageReport}"
rowsPerPageTemplate="5,10,15,all"
page="#{dataTablePaginator.startPage}"
rows="#{dataTablePaginator.rows}">
<ace:ajax event="page" render="@form" execute="@this" />
where ACE is pointing to
xmlns:ace="http://www.icefaces.org/icefaces/components" only
but I see that the Icefaces demo useses
<ace:dataTable id="carTable"
value="#{dataTablePaginator.carsData}"
var="car"
paginator="#{dataTablePaginator.paginator}"
paginatorPosition="#{dataTablePaginator.position}"
paginatorTemplate="{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown} {CurrentPageReport}"
rowsPerPageTemplate="5,10,15,all"
page="#{dataTablePaginator.startPage}"
rows="#{dataTablePaginator.rows}">
<ace:ajax event="page" render="@form" execute="@this" />
where ACE is pointing to
xmlns:ace="http://www.icefaces.org/icefaces/components" only
Activity
Field | Original Value | New Value |
---|---|---|
Status | Open [ 1 ] | Closed [ 6 ] |
Resolution | Invalid [ 6 ] |
You must use the ACE datatable in order to use the ace:ajax with it.
The older ICE datatable does not support an ajax subcomponent, but instead uses the singleSubmit attribute.
The namespace for the ACE components is:
xmlns:ace="http://www.icefaces.org/icefaces/components"
The namespace for the older ICE components is:
xmlns:ice="http://www.icesoft.com/icefaces/component">
Closed as Invalid.