I am trying to populate a text input field using javascript based text the user clicks on within a grid.
The user can select text within a grid cell and select text from multiple grid cells. To handle multi-grid cell selection I would like to insert a control character as a separator as the input text can contain any character.
Firefox and IE allow me inserting a control character and I have been using \x12 Form-feed.
However, testing on Chrome the control character and all text after it fails to enter the text input field.
Is there a list of control characters which are accepted by Chrome or an alternative solution?