I have a request from the client to have a drop down and a text field for mobile number column in jqgrid add / edit form.
Like this
Mobile number <countrycode drop down> <mobile number text field>
I want to know can this be done in jqgrid add/edit form? If yes, then how?
@UPDATE: Here is how i want the output in add / edit form (you will need to create a html file with below code and see the output in browser). Sorry can't upload image, do not have that many reputations :(...
<html>
<body>
<table>
<tr>
<td>Phone#</td>
<td>:</td>
<td>
<select><option value=1>1</option></select>
<input type="text"/>
</td>
</tr>
</table>
</body>
</html>