Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function mpPopupWorkingPlace( workplaceId ) {
  2.    
  3.     // edit
  4.     if ( arguments.length > 0 ) {
  5.        
  6.         $( '#mp_popup_new_working_place' ).find( 'input[name="name"]' ).val(            $('#mp_wp_' + workplaceId).find( 'span[data-field="name"]' ).html() );
  7.         $( '#mp_popup_new_working_place' ).find( 'input[name="position"]' ).val(        $('#mp_wp_' + workplaceId).find( 'span[data-field="position"]' ).html() );
  8.         $( '#mp_popup_new_working_place' ).find( 'input[name="date_from"]' ).val(       $('#mp_wp_' + workplaceId).find( 'span[data-field="date_from"]' ).html() );
  9.         $( '#mp_popup_new_working_place' ).find( 'input[name="date_till"]' ).val(       $('#mp_wp_' + workplaceId).find( 'span[data-field="date_till"]' ).html() );
  10.         //$( '#mp_popup_new_working_place' ).find( '[name="currently_working"]' ).val();
  11.         $( '#mp_popup_new_working_place' ).find( 'input[name="additional_info"]' ).val(     $('#mp_wp_' + workplaceId).find( 'span[data-field="additional_info"]' ).html() );
  12.         $( '#mp_popup_new_working_place' ).find( 'input[name="action"]' ).val( 'update' );
  13.         $( '#mp_popup_new_working_place' ).find( 'input[name="id"]' ).val( workplaceId );
  14.     } else {
  15.        
  16.         $( '#mp_popup_new_working_place' ).find( 'input[name="name"]' ).val( '' );
  17.         $( '#mp_popup_new_working_place' ).find( 'input[name="position"]' ).val( '' );
  18.         $( '#mp_popup_new_working_place' ).find( 'input[name="date_from"]' ).val( '' );
  19.         $( '#mp_popup_new_working_place' ).find( 'input[name="date_till"]' ).val( '' );
  20.         //$( '#mp_popup_new_working_place' ).find( '[name="currently_working"]' ).val();
  21.         $( '#mp_popup_new_working_place' ).find( 'input[name="additional_info"]' ).val( '' );
  22.         $( '#mp_popup_new_working_place' ).find( 'input[name="action"]' ).val( 'new' );
  23.         $( '#mp_popup_new_working_place' ).find( 'input[name="id"]' ).val( '' );
  24.     }
  25.    
  26.     $('#mp_popup_new_working_place').show();
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement