I've created a little script which does this if you want to select a media item. I think it should also be possible to do this when creating media. You can download the source and add this yourself: http://damp.codeplex.com/SourceControl/changeset/view/86116#1765796. At the bottom is this code:
if (!isCreateTree) {
//Wait for 100 miliseconds because the Umbraco tree might not be loaded yet.
setTimeout(
function () {
//Find the top node and click it to show the allowed media items of the top node in the centre.
leftCol.find("a").first().click();
}, 100);
}
If you remove the if statement it might work already.
Create Media Item - Automatically Select Media Location?
Is it possible to have the parent folder automatically selected rather than having the user click it for every image?
I've created a little script which does this if you want to select a media item. I think it should also be possible to do this when creating media. You can download the source and add this yourself: http://damp.codeplex.com/SourceControl/changeset/view/86116#1765796. At the bottom is this code:
If you remove the if statement it might work already.
Jeroen
is working on a reply...