string _BizonylatID = e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["BizonylatID"].ToString();
string _commandname = e.CommandName;
so I wrote a method to run the sql UPDATE statement:
private
void AcceptCommand(string _BizonylatID)
so i've tried to test and clicked on Command on grid but nothing happaned?
what is the problem?
Thanks,
Zsolt Zombik
function
onNodeDragging(sender, args)
{
debugger;
var draggedNodeVal = args._node.get_value();
var target = args.get_htmlElement();
if(draggedNodeVal != "999999999") // This check for new vale node.
{
if(!target) return;
if (target.tagName == "INPUT")
{
target.style.cursor =
"hand";
}
}
else
{
alert(
"This is a New Value node . You cannot dragg this node. Please try diffent one.");
args.set_cancel(
true);
}
}