Autoresize Height Datatable Cells

Ok, after playing now one day around, I found out that the data from Json is not handled well. However, I reformat my JSON text now to work with PRE tag. But my text is very long and the datatable shows the text in an very ugly way. I expect that a datable shows always the whole data and not only some pixels of it.
However, please let me know how to auto resize the row height so the control will show the whole text. Sorry but I think this is the basic issue of a datatable :wink:

The code I use currently:
        webix.ui({
            view:"window", modal:true, id:"editwin",position:"center",
            head:"DataTable", left:50, top:50,
            body:{
                view:"datatable", id: "datawin",
                columns:[
                    { id:"id_case",	    header:"id",  		width:50,	sort:"int"},
                    { id:"body_case",	header:"Text",      width:400}
                ],
                select:"row",
                autowidth:true, autoheight:true,

                url: "itemsource.php?id=213"


            }
        });

https://docs.webix.com/api__ui.datatable_adjustrowheight.html

Integral. thank you for you hint. However, this do not really work. My code looks now:

    webix.ui({
        view:"window", modal:true, id:"editwin",position:"center",
        head:"DataTable", left:50, top:50,
        body:{
            view:"datatable", id: "datawin",
            columns:[
                { id:"id_case",	    header:"id",  		width:50,	sort:"int"},
                { id:"body_case",	header:"Text",      width:400}
            ],
            select:"row",
            autowidth:true, autoheight:true,
            fixedRowHeight:false,  rowLineHeight:25, rowHeight:25,


            url: "itemsource.php?id=213",
            
            on:{
                "onresize":webix.once(function(){
                    this.adjustRowHeight("body_case", true);
                })
            }




        }
    });

It looks like that the grid will cut the text. In the grid I see:

<?xml version="1.0" encoding="utf-8"?><soap:Envelope

but the text is:

<?xml version="1.0" encoding="utf-8"?>MR_Ruleset_Placeholder

So I think it fails because the text is not shown well.

I think it was answered here - https://forum.webix.com/discussion/31944/string-rendering-in-grid-column#latest

The grid process your content as HTML, which mean it parses incoming data as tags, not as row text. You need to enable data escaping

https://docs.webix.com/desktop__html_templates.html#xsssafetemplates