Good day!
I’m new jqWidjets user. And first of all let me say that this framework is very impressive. Thanks a lot to authors.
But I have some trubles:
1. If I try to edit a multiline (wrapped) cells, then a row shrinks and it looks ugly.
Try to click on column 2 cell to reproduce:
$(document).ready(function () {
var data = [{ '1': 'Short','2': 'Long sentence to wrap it by two or more lines'}];
var source =
{
datatype: "json",
localdata: data,
};
var dataAdapter = new $.jqx.dataAdapter(source);
$("#jqxgrid").jqxGrid(
{
editable: true,
autorowheight: true,
pageable: true,
source: dataAdapter,
columns: [
{ text: 'Column 1', datafield: '1', width:70 },
{ text: 'Column 2', datafield: '2', width:70 },
],
});
});
2. In second example edit mode can not activates by clicking on column 2 cell:
$(document).ready(function () {
var data = [{ '1': 'Short','2': 'Long sentence to wrap it by two or more lines'}];
var source =
{
datatype: "json",
localdata: data,
};
var dataAdapter = new $.jqx.dataAdapter(source);
$("#jqxgrid").jqxGrid(
{
editable: true,
autoheight: true,
autorowheight: true,
source: dataAdapter,
columns: [
{ text: 'Column 1', datafield: '1', width:70 },
{ text: 'Column 2', datafield: '2', width:70 },
],
});
});
May be something I doing is wrong. Help please.