i'm using kendo grid display data of csv file. grid has 6 column [mac,module,loglevel,logtype,logtime,logmessage] cells of logmessage column contains large strings, of little part visible on grid. want display whole message using horizontal scrollbar unable so, have tried many things autowidth property, resizable property didn't succeed. idea, how accomplish this?
vm.mygridcolumns = [ { 'field': 'field1', 'title': 'field1', width: '100px', template: "<div style='overflow:auto;width:100px;'>#: field1 #</div>" }, { 'field': 'field2', 'title': 'field2' ...etc... }, ...etc... ];
Comments
Post a Comment