I really like the FileBrowser in the Editor that is available for uploading images.
Is it also possible to call this FileBrowser directly?
Kind regards,
Marco
2 Answers, 1 is accepted
0
Dimo
Telerik team
answered on 05 Mar 2012, 02:00 PM
Hi Marco,
The image browser cannot be used as a standalone component, but you can achieve a similar behavior by using the Editor and hiding everything that is not needed. The following will produce only a small button:
.myImageBrowser tr+tr>td>* /*this selector needed by IE7*/
{
visibility:hidden;
width:0;
height:0;
overflow:hidden;
font:0/0 serif;
border:0;
padding:0;
}
Greetings,
Dimo
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.