选择单击的按钮 itemrenderer 所在的行?
在数据网格内,我本质上想在可下载对象名称的右侧创建一个“下载按钮”项目渲染器,从而产生类似于以下链接的内容: https://i.sstatic.net/HXUlB.png
下载函数对当前选定的行进行操作,并在单击下载按钮之一时调用。因此,我想知道是否有人知道如何在单击其中一个下载按钮时选择 itemrenderer 按钮所在的行作为活动行。
Inside a datagrid, I essentially want to create a "download button" itemrenderer to the right of the name of a downloadable object, resulting in something like the following link: https://i.sstatic.net/HXUlB.png
The download function operates upon the currently selected row and is called when one of the download buttons is clicked. Therefore, I am wondering if anybody knows of a way to select the row the itemrenderer button is contained within as the active row when one of the download buttons is clicked.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用这样的东西
,其中 dg 是你的 DataGrid,ir 是你的 itemRenderer
希望这有帮助。
f
I would use something like this
where dg is your DataGrid and ir is your itemRenderer
hope this helps.
f