|
|
Rank: Member Groups: Member
Joined: 4/26/2006 Posts: 61 Points: 0
|
Hello,
I can make the UploadListButtons not visible. What I really need is to make only the "Add All" & "Remove All" buttons invisible. How do I accomplish this? Hope to hear from someone soon.
Thanks. DSCarl.
|
|
 Rank: Advanced Member Groups: Administration
, Member
Joined: 7/28/2003 Posts: 1,254 Points: -345 Location: WA, US
|
Quote:I can make the UploadListButtons not visible. What I really need is to make only the "Add All" & "Remove All" buttons invisible. How do I accomplish this? Hope to hear from someone soon. ButtonAddAllToUploadListText and ButtonRemoveAllFromUploadListText properties will help you. For both of these properties if an empty string specified, the buttons become invisible. So way just use the following code: Code:
iu.addParam("ButtonAddAllToUploadListText", "");
iu.addParam("ButtonRemoveAllFromUploadListText", "");
Best regards, Fedor Skvortsov
|
|
Rank: Member Groups: Member
Joined: 4/26/2006 Posts: 61 Points: 0
|
Thanks Fedor.
Regards, DSCarl.
|
|
|
Guest |