I have a custom UserControl set for the editing on the GridControl.
I need to get the Text value from a TextBox on this UserControl back to the Server.
Sofar, I tried to access this using the following:
This is returning "" on the server side.
How can I perform a postback on this textbox in order for the Server to get the values from the client?
Any help please?
I need to get the Text value from a TextBox on this UserControl back to the Server.
Sofar, I tried to access this using the following:
| UserControl userControl = (UserControl)e.Item.FindControl GridEditFormItem.EditFormUserControlID); |
| string result = (userControl.FindControl("txtNote") as TextBox).Text; |
This is returning "" on the server side.
How can I perform a postback on this textbox in order for the Server to get the values from the client?
Any help please?