Is it possible to create a combo like these: dhtmlx.com/docs/products/dhtmlxC … ckbox.html
But have a long description column where the text wraps so you can see it all? I’ve tried using the css option like this…
[code]
====css===
/* Source: CSS Cross Browser Word Wrap - CSS Snipplr Social Repository /
.wordwrap {
white-space: pre-wrap !important; / CSS3 /
white-space: -moz-pre-wrap !important; / Firefox /
white-space: -pre-wrap !important; / Opera <7 /
white-space: -o-pre-wrap !important; / Opera 7 /
word-wrap: break-word !important; / IE */
}
===js===
reasonCombo.setTemplate({
input: “#reasoncode#”,
columns: [
{header: “Reason Code”, width: 120, option: “#reasoncode#”},
{header: “Description”, width: 400, css:“wordwrap”, option: “#description#”}
]
});[/code]
But the descriptions in the grid still won’t wrap. And can you set a custom height for the whole grid?
Thanks!