Hello
I want to enter Tabs and Linebreaks in a textbox column. I tryed this, but it does not work.
When I press the tab key, the cursor goes to the next column.
Greetings,
wima
I want to enter Tabs and Linebreaks in a textbox column. I tryed this, but it does not work.
private void radGridView1_CellBeginEdit(object sender, GridViewCellCancelEventArgs e) |
{ |
RadTextBoxEditor editor = radGridView1.ActiveEditor as RadTextBoxEditor; |
editor.AcceptsReturn = true; |
editor.AcceptsTab = true; |
} |
Greetings,
wima