Hi,
I am developer an user control wich create a RadTextBox and set the property
ShowButton= true and the button appears to the right of the textBox.
Now I need to attack to click event button an ajax event in server side. For that I am using the following line of code:
protected override void CreateChildControls()
{
....
txtBox1.ClientEvents.OnButtonClick =
"BtnClick";
....
}
and I create the method:
void BtnClick(object sender, EventArgs eventArgs)
{
}
But the BtnClick method doesn't fires. How can I do this without use javascript, just server side.
Please help me.
Mickna.