4 Answers, 1 is accepted
0
Hi Jean,
Please, review the following help article on the subject: ExternalDialogsPath property.
Let me know if you need additional help.
Best regards,
Rumen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Please, review the following help article on the subject: ExternalDialogsPath property.
Let me know if you need additional help.
Best regards,
Rumen
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jean
Top achievements
Rank 1
answered on 16 Oct 2008, 12:59 PM
Hi Rumen,
Thanks for getting back to me, I have done what is in the link, that is fine for hiding the controls which I've have done, but I need to hide the textbox that displays the folder path.
I've looked at ImageManager.ascx, and I think the folder path is part of this control:
Thanks for getting back to me, I have done what is in the link, that is fine for hiding the controls which I've have done, but I need to hide the textbox that displays the folder path.
I've looked at ImageManager.ascx, and I think the folder path is part of this control:
<
widgets:GenericFileLister height="317px" id="GenericFileLister1" runat="server">
There does not seem to be a way to edit it, any ideas?
Many thanks
Jean
0
Hello Jean,
The textbox above the file browser has a CSS class "folderPath". Simply add a style tag to the ImageManager.ascx control and you should be able to hide it:
<style type="text/css">
.folderPath
{
display:none;
}
</style>
I hope this helps.
Regards,
Lini
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
The textbox above the file browser has a CSS class "folderPath". Simply add a style tag to the ImageManager.ascx control and you should be able to hide it:
<style type="text/css">
.folderPath
{
display:none;
}
</style>
I hope this helps.
Regards,
Lini
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jean
Top achievements
Rank 1
answered on 16 Oct 2008, 02:09 PM
Hi Lini,
That did the trick!
Thank you
Jean
That did the trick!
Thank you
Jean