Registered: March 28, 2009 | Posts: 1 |
| Posted: | | | | I'm not sure if this has been suggested before. I've done a search but found nothing. Is there an ability to create a list of Locations in the Personal Information part of the DVD Collection?
We have the ability to Edit Retailers, Users, Tags etc where we can create a list, adding to them etc.
I keep my collection in cd folders with up to 104 slots. To have to type in the name of the Location each time I add a DVD is a bit of a pain. It would be very useful to be able to select the Location from a list.
I hope I've explained my meaning well enough. |
|
Registered: March 18, 2007 | Reputation: | Posts: 6,460 |
| Posted: | | | | Nice idea. +1
Until then, how about keeping your locations in a dropdown list control: Excel, Word, HTML section, whatever. Then, with the list open, you can copy / paste. Maybe a temporary workaround?
Here is a sample HTML Section that keeps a drop down list, and when you select an item, it gets put into the clipboard. Then just Ctrl-P and paste into the location.
<HTML> <HEAD> <SCRIPT TYPE="text/javascript"> <!-- <DP NAME="HEADER_VARS" Language="JavaScript" Comments="True" IncludeCast="False" IncludeCrew="False"> //--> </SCRIPT> </HEAD> <BODY> <FORM NAME="myform"> <select NAME="location" onChange="var hold=myform.location.value;window.clipboardData.setData('text',hold);"> <option value="Location 1">Location 1</option> <option value="Location 2">Location 2</option> <option value="Location 3">Location 3</option> <option value="Location 4">Location 4</option> </select> </FORM> </BODY> </HTML> | | | Thanks for your support. Free Plugins available here. Advanced plugins available here. Hey, new product!!! BDPFrog. | | | Last edited: by mediadogg |
|
Registered: March 19, 2007 | Reputation: | Posts: 6,018 |
| Posted: | | | | Good idea! |
|