Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试建立一个带有分页的网格,但我想更改出现在数字之前/之后的文本。
<grid sclass="myTable" mold="paging" pageSize="1" > ... </grid> //Under the table now there is a pagination
现在它类似于“上一个”和“下一个”。我怎样才能在这里使用图像?
或者,如果不可能,有人可以向我展示如何使用自定义渲染器执行此操作的教程吗?
谢谢
您可以使用 Javascript 替换元素或使用 CSS3 将一些文本与元素一起放置。例如,
<style> .myTable .z-paging-text:before { content: 'before'; } .myTable .z-paging-text:after { content: 'after'; } </style>