문제

I want to copy value of multi line of text column to another multi line of text column in edit form.

I need this because first column has feature append to save and display previous entries, but as you know with append activated when user enters some text and saves item that text won't show in edit form when user opens item again.

도움이 되었습니까?

해결책

$(document).ready(function(){ 
    // instead of TDs' IDs I put autogenereted IDs of DIVs and solved this.
    $("#ctl00_ctl40_g_82eb9f08_066e_4bbc_a801_f88a93c73177_ff21_ctl00_ctl00_TextField_inplacerte").text($("#ctl00_ctl40_g_82eb9f08_066e_4bbc_a801_f88a93c73177_ff31_ctl00_ctl00_TextField_inplacerte").text());
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top