Why can not drag in demo ver.?
I used css
.pq-native-select{user-select: text; -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text;}
but It does not work...
function initDetail ( ui ){
console.log("initDetail", ui);
var rowData = ui.rowData;
/*html = $("#tmpl").html()*/
html = "<div class=\"pq-native-select\" style=\"width:auto; white-space:pre-wrap;word-break:break-all; white-space:-moz-pre-wrap; word-wrap:break-word;\">";
html += "<p>";
html += rowData.sdContent;
html += "</p>";
html += "</div>";
$detail = $("<div></div>");
$detail.html(html);
return $detail;
};
Tell me what to do.