in jqgrid am showing person name as "Firstname + Lastname" in a single column. but when i click on edit it will become one input field but i want it to be two inputs field one for firstname and other one for lastname.
for example: take any jqgrid table and assume there is one more column "name" having values like "Rahul garg", "Jack oberoi", "Gordon Linoff".. when i edit it it will be like
<input type="text" class="formelement" name="name" value="Rahul garg">
but i wanted it to be like
<input type="text" class="formelement" name="first_name" value="Rahul">
<input type="text" class="formelement" name="last_name" value="garg">