Ignore:
Timestamp:
10/31/11 14:48:26 (12 years ago)
Author:
viani
Message:

Ticket #2304 - Incluído parâmetro useCCParams no plugin wf_select_ldap_users

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/js/jscode/wf_select_ldap_users.js

    r3167 r5122  
    99 * @param String opt_name Atributo que será atribuído ao name (innerHTML) das options da combo, por padrão é o 'cn' 
    1010 */ 
    11 function search_ldap_users_by_cn(cn, target, opt_id, opt_name, handleExpiredSessions, opt_complement) 
     11function search_ldap_users_by_cn(cn, target, opt_id, opt_name, handleExpiredSessions, opt_complement, useCCParams) 
    1212 
    1313        // o parâmetro opt_complement foi acrescentado posteriormente a esta função, devido alguns métodos não utilizá-lo é 
     
    5454 
    5555        var url = '$this.bo_utils.search_ldap_users_by_cn'; 
    56         var param = "cn=" + cn + "&target=" + target + "&id=" + opt_id + "&name=" + opt_name + "&complement=" + opt_complement; 
     56        var param = "cn=" + cn + "&target=" + target + "&id=" + opt_id + "&name=" + opt_name + "&complement=" + opt_complement + "&useCCParams=" + useCCParams; 
    5757 
    5858        document.getElementById(target + "_img").show(); 
Note: See TracChangeset for help on using the changeset viewer.