function readOnly(count){ }
Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Add method:
SelectListOfWorkItems.ADD(new SelectOption(WorkItem.id, WorkItem.Name));
plz send remove methods...
I assume your SelectListOfWorkItems is a List of select options, You can simply call the remove method on the list
SelectListOfWorkItems.remove(i);
i = the position in the list.
If what you're trying to do is remove it from the database, then you need to make this via api.
I assume your SelectListOfWorkItems is a List of select options, You can simply call the remove method on the list
SelectListOfWorkItems.remove(i);
i = the position in the list.
If what you're trying to do is remove it from the database, then you need to make this via api.