Re: Convert a print to Rtf or doc
Posted: Fri Dec 01, 2023 10:41 am
Let me say it again: With the free developer resources we have here and the priorities - for example, variable column height in xBrowse - it's not possible.
www.FiveTechSoft.com
https://fivetechsupport.com/forums/
Code: Select all | Expand
document.getElementById('edit-btn').addEventListener('click', editbtn);
function editbtn(evt) {
let printContents = document.getElementById('tischplanPreview').innerHTML;
const data = {
text: printContents,
btn: ''
};
var someData = { 'param1': data };
var s = SendToFWH( evt.target.id, evt.type, someData )
.then(s => {
alert(s.result);
})
}