在 itemrenderer 中使用图像对数据网格单元格进行缩放效果
我无法弄清楚如何在项目渲染器的帮助下缩放显示的图像。如果我在鼠标悬停时应用缩放效果,特定单元格会使用滚动条缩放图像。他们是否有其他方法可以做到这一点而不需要显示滚动条。
I am not able to figure out how to zoom the image displayed with the help of an item renderer.If i apply the Zoom effect on rollover ,the particular cell zooms the image with the scroll bars.Is their any other way of doing this without showing the scrollbars.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要复制图像并将其放置在数据网格组件之外。如果它位于数据网格内部,它将被强制进入其中一行。查看 DataGridDragProxy 的代码可能会对您有所帮助 - 它确实做了一些类似的事情。
You'll need to duplicate the image and place it outside of the datagrid component. If it's inside the datagrid, it'll be forced into one of the rows. It might be helpful for you to look at the code for the DataGridDragProxy - it does does something sorta similar.