关于Checkcolumn侦听器调用的ExtJs 6访问记录

时间:2018-08-23 09:32:09

标签: extjs extjs6 extjs6-classic

当我单击复选框时,我正在尝试访问该行的记录。

下面是一些代码摘录:

 <tr>
            <td bgcolor="#000000">
                <table role="presentation"  cellspacing="0" cellpadding="20" border="0" width="50%">
                    <tr>
                        <td>
                            <a href="https://www.facebook.com/TheNerveAfrica">
                                <img src="http://i68.tinypic.com/3462n9v.png" alt="Facebook" width="25" height="25"  border="0" />
                            </a>
                        </td>
                        <td>
                            <a href="https://twitter.com/thenerveafrica">
                                <img src="http://i67.tinypic.com/50ppw3.png" alt="Twitter" width="25" height="25" border="0" />
                            </a>
                        </td>
                        <td>
                            <a href="https://www.instagram.com/thenerveafrica/">
                                <img src="http://i63.tinypic.com/311mh01.png" alt="Instagram" width="25" height="25"  border="0" />
                            </a>
                        </td>
                        <td>
                            <a href="https://www.linkedin.com/company/thenerve-africa">
                                <img src="http://i64.tinypic.com/349fosi.png" alt="LinkedIn" width="25" height="25" border="0" />
                            </a>
                        </td>


                    </tr>


                </table>
            </td>
        </tr>

我感到受阻,在互联网上找不到任何有关它的信息。 我在做一个常见的基本思想错误吗?

我正在使用ExtJS 6.0.0 classic。

1 个答案:

答案 0 :(得分:1)

您应该在 grid.getStore().getAt(rowIndex); 事件处理程序中使用 checkchange

Working Fiddle