I am binding the data for SharePoint list item as below . But after binding the data I am getting the result in double quotations.
Can any one please help me in finding the issue in below lines
var txtparticipateidvalue="txtparticipants"+count;
var tempparticipantsvalues=oListItem.get_item('TTParticipants');
var wraper;
if(tempparticipantsvalues!=null)
{
var wraper= '<textarea id="'+txtparticipateidvalue+'" disabled rows="1"
cols="30" wrap="Hard">"'+tempparticipantsvalues+'" </textarea>';
$(document).on("keyup", "textarea", check);
}
else
{
var wraper= '<textarea id="'+txtparticipateidvalue+'" disabled rows="1" cols="30" wrap="Hard"> </textarea>';
}
wrapervariable. Sowrap="Hard">"'should just bewrap="Hard">'and the same with the other side of thetempparticipantsvalues– theChrisKent Apr 16 '18 at 18:37