The form-editing tag has no wiki summary.
0
votes
1answer
170 views
jqGrid - form editing issues
In the inline editing, before the editing be made, it creates internally an array (savedRow) and fill it with the values of the fields that are being editable, so I can access this values.
I'd like ...
0
votes
0answers
121 views
JQGrid:GridToForm - custom form with complex DOJO/DIJIT components
I already have some web forms built using DIJIT widgets from the DOJO javascript library. These forms include ComboBoxes (which allow freetext in addition to dropdown suggestions), and connected ...
1
vote
0answers
275 views
jqGrid Form Editing - How to POST Edit row to the sql server
I am using jqGrid in my sharepoint webpart and trying to use Form Editing grid.
I dont know how to post data back to the sql server database for add/update/delete.
I am using WCF service that will ...
1
vote
0answers
351 views
jqgrid AfterShowForm event
I have a jqGrid with a funtion "MyFunction" in AfterShowForm event.
MyFunction= function() {
alert("#MyElementId");
$("#MyElementId").attr("disabled", "true");
}
The code above works, but if I ...
3
votes
2answers
921 views
jqGrid - How to modify form_editing construction?
In the jqGrid documentation to form_editing, I see how the form_editing is constructed.
<form ...>
<table>
<tr id='tr_myfield'>
<td> Caption</td> ...
1
vote
1answer
845 views
jqgrid Form editing : questions about actions after deleting a row
After long searches, I succeed to delete a row in a jqgrid with form editing.
But, there are two little things left :
How to reload the grid with the row deleted ?
If the row can't bedeleted, how ...
2
votes
2answers
1k views
JQGrid Edit Form Closing When Click Off Form
hopefully this is a simple question. In the JQGrid form edit mode, the edit form pops up in the middle of the screen for editing. When I click off of the form, like on the background area, the form ...
5
votes
2answers
8k views
Adding new row to jqGrid using modal form on client only
There appear to be many solutions that are very close to addressing my problem but of the dozens and dozens of questions I've poured through not one seems to exactly address what I'm trying to do. ...