Rank: Advanced Member Groups: Member
Joined: 4/24/2008 Posts: 31 Points: 93
|
I've got a one pane upload view and I don't want users to see the "Edit Description" link underneath their thumbnails.
I added this to my intialization script, but the edit description link continues to show up. iu.addParam("FolderPaneShowDescriptions", "false");
Is there something else I need to do to suppress this link?
I'm experiencing this in the Java version.
|
Rank: Advanced Member Groups: Member
Joined: 9/19/2006 Posts: 353 Points: 180
|
Hi, Try to use UploadPaneShowDescriptions: Code:
iu.addParam("UploadPaneShowDescriptions", "false");
Best regards, Eugene Kosmin. Aurigma Development Team
|
Rank: Advanced Member Groups: Member
Joined: 4/24/2008 Posts: 31 Points: 93
|
Ah thanks. That worked.
|