-1

如何获取特定行单元格索引的列 ID?

HTML表格设计:我的表格

当表格的单元格内容被放入另一个单元格时,此代码处理和 Ajax 请求:

redipsInit = function () {
// reference to the REDIPS.drag lib
var rd = REDIPS.drag;
// initialization
rd.init();
// dragged elements can be placed to the empty cells only
rd.dropMode = 'single';
// define dropped handler
//the parameter targetCell is the reference of the cell where the content has been         
//dropped
rd.event.dropped = function (targetCell) {

    var tbl = rd.findParent('TABLE', targetCell); //reference to my table

    //getting the tabindex attribute that in my case represent the row index
    var cardPosition = targetCell.attributes[0].value;

    // the cell content (the div tag with class = "drag t1") has an ID that reprensents
    // the content ID in my DB.
    var cardIdBeingDragged = targetCell.firstElementChild.id;

    var columnID = "";
    var parametros = {
        "Card_Position": cardPosition,
        "Card_ID": cardIdBeingDragged,
        "Column_ID" : ??? // still dont know how to get it.
    };
    $.ajax({
        type: 'POST',
        url: "../../Contenido/Board.aspx/SaveCardPosition",
        data: JSON.stringify(parametros),
        contentType: "application/json; charset=utf-8",
        dataType: "json"
    });   
};
};

好的,我会做一个场景来理解我想要什么。

当单元格内容从一个单元格拖放到另一个单元格时,我能够处理它上面的 javascript 代码。
下一步是在代码后面(ASP.Net)中获取 3 个值参数以发送到我的 webMethod(SaveCardPosition)

我能够得到:
CardId(Cell ContentId)
targetCell 所属的 Rowindex(Card_Position)

但我不知道如何获取此 targetCell 所属的列 ID。

我怎样才能做到这一点?

4

2 回答 2

0

您可以将数据属性放在指定列的单元格中...

于 2013-06-11T04:00:13.843 回答
0

当给定参数与您想要的单元格的值或任何其他属性匹配时,我将遍历该行并返回一个索引,然后您就会知道它是哪一列,因此它是列 ID。

于 2013-06-11T03:51:49.260 回答