link newline problem

thank you for quickly reply.

I have new problem,

when i set grid a column type link, but the link length longer than the column width, how does the link automatic adjust its length

not to exceed the column width by newline.

thanks


The grid can work in two modes



a) fixed line heigh - the heigh of row fixed, content inside row can’t generate new lines
b) flexible heigh - heigth of row defined by content and you can’t control it



Current mode defined by
    grid.enableMultiline(…



Basically, you can force all links in grid to be single-line by adding next css rule




     div.gridbox A { white-space:nowrap; }