I am trying to find a good "jqGrid-friendly" way of changing the text area in the form edit to include a character counter letting users know how much they can enter.
This example shows how to define a text area with a character counter. Character countdown like on twitter
What I'm trying to figure out is the best way to modify the form edit to include this content. Specifically, I need to insert the span element so I can set the remaining characters text after the text area column in the edit form.
From what I can tell, it looks like the jqGrid API allows for manually inserting new rows in the form:
jQuery("#grid_id").jqGrid('editGridRow', "new", properties );
What isn't clear to me is the best way to control where I add that element in. Any suggestions?