Removing entries from a Multi-Select listbox

评论

1 条评论

  • Avatar
    AgilePoint NX Support

    Thanks, Douglas,

    We appreciate our valuable product user's considerable suggestion to improvise our product more user friendly.

    There is not an OOTB helper method available to remove the bounded values from the collection control but you may use the following simple javascript which will help you to remove the items from the collection controls.

    function remove_listItems(ControlID) {var src = document.getElementById(ControlID);for (var count = src.options.length - 1; count >= 0; count--) {if (src.options[count].selected == true) {src.remove(count, null);}}}

    We would like you to help in a better way by raise a ticket for further queries in our AgilePoint Support where you will get room to create a detailed conversation of your queries and issues with tracking.

     

    Regards,

    AgilePoint Support.

    1
    评论操作 固定链接

请先登录再写评论。