문제

I am working on a scenario of dragging the radtreeview node onto Radgrid row ,where I need to get the row id value as soon as I leave the node upon the grid row.

I have seen examples but they are giving the row cell value (not comple row values) when I drop the node on it

So I want to write a MouseUp event similar to MouseOver.

I want to know how to implement MouseUp/MouseDown events on the radgrid row.

Thank you Ramesh.T.

도움이 되었습니까?

해결책

If you use jquery,

function droppedOnGrid(args)
{
    var target = args.get_htmlElement();

    // To get the row of cell
    var row = $(target).parent()
    // Find the value in the cell which you want
    var id = row.children()[index].val();
    ......

hope that helps

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top