Hi,
I added a GridRowEditTemplete and it worked just fine. In one situation. i need to programmatically change the text value for the GridCellProxy control. For example:
I have the user select the OpenFileDialog. I want to store the directory path to the GridCellProxy control:
Me.ugcpImageLocation.Text = "c:\test\steve.txt"
This clearly does not work. Is there another way?
Best, Steve
Hi, try this
Me.ugcpImageLocation..Focus();
this.ultraGridRowEditTemplate1.Grid.ActiveCell.Value="c:\test\steve.txt";
put you Value in the template.