Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
160
UltraGridCellProxy.text
posted

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

 

Parents
No Data
Reply
  • 175
    posted

    Hi, try this

     

    Me.ugcpImageLocation..Focus();

    this.ultraGridRowEditTemplate1.Grid.ActiveCell.Value="c:\test\steve.txt";

     

    put you Value in the template.

Children
No Data