本文介绍了设置flexgrid Records的cusor:hand,如果我们单击,则需要将HTML页面显示为弹出窗口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有HTML页面.该页面中具有flexgrid并具有记录.每行包含两列.用于示例名称和部门. flexgrid就是这样.请看下面

部门名称
xxxx CSE
yyyy EEE
ZZZZ ECE

我曾经写过像这样的jquery代码来绑定记录

Hi,

I have HTML Page. in that Page has flexgrid and has records. each row contains two columns . for examlpe name and dept. the flexgrid has like this. please see below

Name Dept
xxxx CSE
yyyy EEE
ZZZZ ECE

i had written code like this jquery for binding the records

$("#fgrdProduct").flexigrid
                (
                    {

                        url: 'Handler.ashx?mode=StudentDetails&status=' + status.value + '&Searchname=' + Searchname.value,
                        dataType: 'xml',
                        colModel: [
                          { display:  'Name', name: 'Name', width: 450, sortable: true, align: 'left'},
                            { display: 'Dept', name: 'dept', width: 100, sortable: true, align: 'left' }

                        ],
                        buttons: [
                            { name: 'Add', bclass: 'add', onpress: doCommand },
                            { name: 'Delete', bclass: 'delete', onpress: doCommand },
                            { name: 'Edit', bclass: 'edit', onpress: doCommand },
                            { separator: true }
                        ],

                        sortname: "client_name",
                        sortorder: "asc",
                        usepager: true,
                        title: 'List of Clients',
                        useRp: true,
                        rp: 15,
                        showTableToggleBtn: false,
                        width: "550",
                        onSubmit: addFormData,
                        height: 350,
                        singleSelect: true,
                        resizable: false,

                    }
                );





在这里,我无法在flexgrid中单击"XXX名称".请告诉我我们如何设置链接,如果我单击该链接,我们需要将HTML页面显示为弹出..如果有人知道,请告诉我.



谢谢
Dhana





Here i cant able to click XXX Name in the flexgrid. please tell me how we are setting the link and if i click the link we need show the HTML page as pop up.. please if any one konw let me know.



Thanks
Dhana

推荐答案





在这里,我无法在flexgrid中单击"XXX名称".请告诉我我们如何设置链接,如果我单击该链接,我们需要将HTML页面显示为弹出..如果有人知道,请告诉我.



谢谢
达纳(Dhana)





Here i cant able to click XXX Name in the flexgrid. please tell me how we are setting the link and if i click the link we need show the HTML page as pop up.. please if any one konw let me know.



Thanks
Dhana


这篇关于设置flexgrid Records的cusor:hand,如果我们单击,则需要将HTML页面显示为弹出窗口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 08:42