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
4695
ultragrid cell click action code
posted

Dear all,

 

I want to put below code in the ultragrid cell click action. How can I do or what eventhandler I can use?

this.txtcellvalue.text=this.ultragrid1.activeCell.text;

 

Thanks,

 

 

Parents
No Data
Reply
  • 469350
    Offline posted

    Hi,

    This code doesn't make sense. It looks like you want to set the value of a cell to the value of the active cell. But you can't do this for a cell the user clicks on, because once the user clicks on that cell, it will become the active cell and you will be setting the cell's value to itself.

    Also, you can't set the Text property on a cell, anyway, you can only set the Value property.

    Perhaps if you explain in more detail what you are trying to do, I could offer some other suggestions.

Children