
Carlos Fernando S Antunes - 2010-11-25 00:15:33
Hello,
I have a few columns that are quite big. If I size them as so:
var thegrid = new drasticGrid('grid1', {pathimg: "img/",
pagelength: 15,
columns: [
{name: 'URL', width: 200, editable: true},
{name: 'Keywords', width: 100, editable: true},
{name: 'Category', width: 50, editable: true},
{name: 'AccountName', width: 50, editable: true},
{name: 'Flag', width: 20, editable: true},
{name: 'LastUpdate', width: 50, editable: false}
]});
What happens is that they all overlap each other and the size is not what I set.
My questions are:
1) How do I get the columns properly sized?
2) Is there an horizontal scroll bar?
3) Can I resize the entire grid?
Thanks in advance.