0

我正在对事件使用内联编辑。单击不可编辑的单元格时,我想打开富文本框。我尝试使用 edittype: custom 并返回 rte 但没有显示。有没有其他方法可以做到这一点。

请建议!

谢谢, 阿夏

4

2 回答 2

1

usingedittype: custom对于不可编辑的列没有意义。通过使用使列可编辑editable: true

于 2013-04-25T11:57:35.813 回答
0

我能够使用以下解决方案实现这一目标

加载完成后,我添加了代码以在单元格单击时打开 div

loadComplete: function() {
        var iColNotesPresent = getColumnIndexByName($(this), 'NotesPresent'), rows = this.rows, i, c = rows.length;
        var iColNotes = getColumnIndexByName($(this), 'Notes');

        for (i = 1; i < c; i += 1) {
            $(rows[i].cells[iColNotesPresent]).click(function(e) {
                var offset = jQuery(e.target).offset();
                var rteText = $(jQuery(e.target).parent()[0].cells[iColNotes])[0].outerText;
                var rowId = jQuery(e.target).parent()[0].id;
                OpenRTEBox(offset, rteText, rowId);
            });
        }
    },

//Open the div containing RTE 
function OpenRTEBox(offset, rteText, rowId) {

isColNotes = true;
currsel = rowId;  

$('#rteDiv').css({ position: "absolute", top: offset.top, left: offset.left, "z-index": 20 });
$('#rteDiv').show();

frames['rte0'].document.body.innerHTML = rteText;    

}

这是 RTE 的 html 代码

                <script language="javascript" type="text/javascript">
                    writeRichText("rte0", "rte0", 575, 200, true, false, "Notes");
                </script>

            </td>
        </tr>
        <tr>
            <td align="right">
                <input type="button" id="btnOK" onclick="addNotes();" value="OK"/>
            </td>
            <td align="left">
                <input type="button" id="btnCancel" onclick="closeDiv();" value="Cancel"/>
            </td>
        </tr>
    </table>
</div>
于 2013-04-29T11:24:52.750 回答