This question is locked. New answers and comments are not allowed.
So one of my columns is defined as such:
Which displays the data nicely. The problem is that using Ajax Editing, the nice big textarea reverts to a single line when editing. How can I fix this?
columns.Bound(o => o.DeliveryInstructions) .ClientTemplate("<textarea name='DeliveryInstructions' disabled='disabled' cols='40' rows='1'><#= DeliveryInstructions#></textarea>");Which displays the data nicely. The problem is that using Ajax Editing, the nice big textarea reverts to a single line when editing. How can I fix this?