Double Cklick
Michael Papenhagen
Hi,we want to realize a text modification for a field with a double click event.
Actual we have text in a field:
Test
After double click the text should be:
Test
What is the way to do this?
Michael
Attachment
[url=http://www.coresystems.ch/wp-content/../wp-content/forum-image-uploads/mpab-w-computer-de/doubleclick.jpg]doubleclick.jpg[/url]
Michael Egloff
Hi there,you have to catch the doubleclick event on the matrix (38) and on the column (163 if you want to do it with the freetext).
use this code:
string val = Matrix.GetFromUID(pVal.Form, "38").GetValue("163 ", pVal.Row-1);
Matrix.GetFromUID(pVal.Form, "38").SetValue("163 ", pVal.Row-1, "" + val + "");
return true;
0
Please sign in to leave a comment.
Comments
0 comments