leo
|
| Posted: 04/05/2005, 3:30 PM |
|
I am using CC studio 2.3.2.24 and Java.
I have created an editablegrid with a textbox above it. They are in the same form. I placed some code to view the textbox in the beforeexecuteupdate event. I always got a null. The textbox has a default value of "something".
Control tc = e.getEditableGrid().getControl("TextBox2");
if ( tc != null )
{
String m = Utils.convertToString(tc.getValue());
if ( m != null)
System.out.println("textbox2 = " + m );
else
System.out.println("textbox2 = null" );
}
Any ideas ?
thanks!
leo
|
|
|
 |
Nicole
Posts: 586
|
| Posted: 04/06/2005, 2:11 AM |
|
This issue is answered at http://forums.codecharge.com/posts.php?post_id=58503
_________________
Regards,
Nicole |
 |
 |
|