基于列值的超链接弹出消息

时间:2015-01-12 20:54:57

标签: javascript jquery jqgrid

我有如下所示的jquery网格列。

colNames: ['Site_Name', 'Details'],
colModel: [{ name: 'Site_Name', index: 'Site_Name', width: 130,editable: false,
sortable: false,formatter: 'showlink', formatoptions: { 
baseLinkUrl: 'javascript:', showAction: "Link('", addParam: "');"} },
{ name: 'Details', index: 'Details', width: 400, editable: false, sortable: false }],

为列形成超链接。

一旦用户点击另一列中基于超链接的值(假设该记录/行的状态)。 我需要在导航到实际页面之前显示弹出消息。

如何在自定义格式的超链接上编写点击事件?

1 个答案:

答案 0 :(得分:0)

从代码中我可以看到,一旦用户点击超链接,就会调用函数Link()。 因此,Link()函数是您在导航到URL之前可以显示弹出消息的位置。