我有一张智能桌子。如何在Smarttable的一列或多列上设置初始排序顺序?
<mvc:View xmlns:m="sap.m" xmlns:mvc="sap.ui.core.mvc" xmlns:semantic="sap.m.semantic" xmlns:footerbar="sap.ushell.ui.footerbar"
xmlns:smartFilterBar="sap.ui.comp.smartfilterbar" xmlns:smartTable="sap.ui.comp.smarttable"
xmlns:app="http://schemas.sap.com/sapui5/extension/sap.ui.core.CustomData/1"
controllerName="audi.project.definition.controller.Worklist">
<semantic:SemanticPage id="page">
<semantic:content>
<smartTable:SmartTable id="smartTable" entitySet="ProjectHeaderSet" tableBindingPath="/ProjectHeaderSet"
app:p13nDialogSettings="{sort:{items:[{
columnKey: 'Description',
operation: 'Ascending'
}]}}"
header="{i18n>/X000558}" showRowCount="true" tableType="Responsive" smartFilterId="prdefWorklistFilterBarId"
showFullScreenButton="true" useVariantManagement="false" enableAutoBinding="true" ignoredFields="WbsElement,Method,Refnumber"
initiallyVisibleFields="ProjectDefinition,Description,ZProjecttypeName,ZMsSchemeText">
<smartTable:customToolbar>
<m:OverflowToolbar design="Transparent">
<m:ToolbarSpacer/>
<m:SearchField id="searchField" tooltip="{i18n>/X000559}" width="auto" search="onSearch" liveChange="onSearchLiveChange"></m:SearchField>
<m:Button type="Transparent" press="onCreateBtnPress" icon="sap-icon://add" tooltip="{i18n>/X000053}"/>
<m:Button type="Transparent" press="onDeleteBtnPress" icon="sap-icon://delete" tooltip="{i18n>/X000058}"/>
</m:OverflowToolbar>
</smartTable:customToolbar>
<m:Table id="table" mode="MultiSelect">
<m:items>
<m:ColumnListItem type="Navigation" press="onPress"/>
</m:items>
</m:Table>
</smartTable:SmartTable>
</semantic:content>
</semantic:SemanticPage>
唯一可能是一个解决方案的部分就在这里:
app:p13nDialogSettings="{sort:{items:[{
columnKey: 'Description',
operation: 'Ascending'
}]}}"
答案 0 :(得分:1)
Thanks to the answer provided for my another question in this page, I finally reached to an answer for this question. I had to use applyVariant
function in the onBindingChange
or onInit
function of the view. Thus I can call a function like the following each time the view is initiated or the route is matched.
setInitialSortOrder: function() {
var oSmartTable = this.getView().byId("mySmartTableId");
oSmartTable.applyVariant({
sort: {
sortItems: [{
columnKey: "ColumnId",
operation:"Ascending"}
]
}
});
}