Hi,
The texbox issue is a FireFox quirk. You can use the following workaround:
Code: JavaScript
function on_custom_item_mouse_down(event)
{
if (event)
event.stopPropagation();
}
Code: HTML/ASPX
<CustomItem>
<div onmousedown="on_custom_item_mouse_down(event)">
.....
</div>
</CustomItem>
FindControl issue is normal. FindControl does not find any child control. It only finds controls inside the same NamingContainer. So in order to have FindControl working correctly, you must call it on the right NamingContainer. In your case you will need to do it this way:
ltrlFind2.Text = (((EO.Web.Dialog)Master.FindControl("dlgOptions")).
ContentContainer.FindControl("ltrlTestResult");
Please let us know if those work for you.
Thanks