Hi,
I am using Infragistics version 8.1. In this version, for the UltraWebTree , is there a way to handle the Double Click event from the server side. I found the Clientside event for the double click of the node. It works fine. But I need to handle this event in the server side. Please help me , how to do that.
Thanks & Regards
Srihari Reddy .R
Hmmm - this was 6 mos. back, but digging into my code I see that I have the following:
// turn off edit capability of tree
function igtree_beginedit(tn, nodeId) {
//custom logic here
return false;
}
So capture the event and return false to disable the editing.
Dan
Did you come up with a way to prevent the disappearing text? I need the allow double-click, but I also need the text to remain.
I have added this request (DoubleClick client side even) as a feature suggestion. Btw, just wanted to let you know that you can easily request features via the following link:
http://devcenter.infragistics.com/Protected/RequestFeature.aspx
I see the same results (disappearing text).
So this does indeed work for capturing the double-click, but I'll now have to try to capture text and replace so that it doesn't disappear.
Thanks as always for your assistance.
PS - Glad I could edit my post - I didn't pay enough attention and didn't return true, thereby making the text editable (not desirable).
i tried using the beforebeginnodeedit client side event,
and returned true,
after i double click on a node, the text on that node dissapears any idea why that might be?