Hello Anthony,
We did receive a sample project and were able to reproduce the issue.
Here is what we answered:
============================================================
The problem comes from the fact that you set the values for the TextBox in the Page_Load handler, however, in this case, you will have to do it at a later stage in the page lifecycle - for example, in the OnPreRender handler:
protected void Page_Load(object sender, EventArgs e) |
{ |
//this.ShowCurrentDetails(); |
} |
|
protected override void OnPreRender(EventArgs e) |
{ |
base.OnPreRender(e); |
this.ShowCurrentDetails(); |
} |
============================================================
Kind regards,
Tervel
the Telerik team