or
function
OnExplorerFileOpen(oExplorer, args)
{
if
(!args.get_item().isDirectory()) {
setTimeout(
function
()
{
var
oWindowManager = oExplorer.get_windowManager();
var
previewWindow = oWindowManager.getActiveWindow();
oWindowManager.add_show(addShowHandler);
previewWindow.setSize(800, 500);
}, 100);
// Some timeout is required in order to allow the window to become active
// destroy code will go here I hope?
}
}
Hi,
I have a problem related with RadNumericTextBox, RadDateInput and RadMaskedTextBox. I use a RadInputManager control, to validate some textboxes (they need to be required), and it works ok on asp:TextBox controls, but on telerik controls it doesn't seem to work. I want to have the same behavior with red textbox border and the yellow triangle with exclamation mark inside if the fields are required. Is there something i have to set on the controls?
Thanks!