如何使用sap.ui.Table创建具有固定的第一列的表

问题描述 投票:0回答:1

我是Sap ui5的新手,试图学习ui5中的不同概念。我想创建一个具有5列的ui5表,其中应固定“第一列”,以便可以在sapui5中创建它,而我的列是:This is my table with columns

           <Table  id="table2">
                   <columns>
                        <Column>
                            <m:Text text="S.No"/>
                            <template>
                                <m:Text text="{serialId}" wrapping="false"  />
                            </template>
                        </Column>
                        <Column>
                            <m:Text text="EmployeeName"  />
                            <template>
                                <m:Text text="{employeeName}" wrapping="false" />
                            </template>
                        </Column>
                        <Column>
                            <m:Text text="EmployeeId" />
                            <template>
                                <m:Text text="{employeeId}" wrapping="false" />
                            </template>
                        </Column>
                        <Column>
                            <m:Text text="Department" />
                            <template>
                                <m:Text text="{department}" wrapping="false" />
                            </template>
                        </Column>
                        <Column>
                            <m:Text text="Status" />
                            <template>
                                <m:Text text="{status}" wrapping="false" />
                            </template>
                        </Column>
                    </columns>
                </Table>

我想实现第一列的固定(即S.No列应固定)。如何解决它(请让我知道是否需要更多信息),我们将不胜感激。谢谢您>]

我是Sap ui5的新手,试图学习ui5中的不同概念。我想创建一个具有5列的ui5表,其中应固定“第一列”,是否可以在sapui5中创建它,我的列是:...

sapui5
1个回答
3
投票

您可以使用fixedColumnCount的属性sap.ui.table.Table

© www.soinside.com 2019 - 2024. All rights reserved.