I have a dataentry that I want to set values for certain textboxes when a user adds a new item/entry. I can access the controls but nothing shows up in the text box at runtime.
1.
private
void
rs40AddNewItem_Click(
object
sender, EventArgs e)
2.
{
3.
Mix _mix =
new
Mix();
4.
(radDataEntry1.PanelContainer.Controls[
"radPanel4"
].Controls[0]
as
RadTextBox).Text =
"TEST"
;
5.
}
I am not sure if this is the right approach.