Hello,
In order to work this the new added rows should have a attribute editable=1 – i.e the table row should have attribute editable=1
Regards
Tony
Hello,
I think it is possible, but you will need to add custom code for the first colum (coloring and etc) using the availble events (like afterInsertRow or gridComplete)
Regards
Tony
Hello,
In this case you should make your own ajax to save the data from the form to the server. If you have custom form you should have custom ajax (it is simple)
Regards
Tony
Hello,
Look at the examples – If I look right now you should do:
eval and not parse – i.e
$(”#list”)[0].addJSONData(eval(“(“+mystring+”)”));
Regards
Tony
Hello,
Before to pass this in jqGrid try to see what is when you do this in IE7
var myjsonarr = eval(“(“+mystr+”)”);
This should produce a json object, but I see emty cell – ie cell:[],
Try to put emty data here instead that this should be empty.
Regards
Tony
Hello,
See docs how to pass this.
Fomething like this
var myaftersave = function(rowid, response) {
// here your code
}
and then
….editRow(rowid,false,'','','','',myaftersave)
Note that you do not need to call it with params
Regards
Tony
Hello,
Do not understand what is thep roblem, but…
When we have empty cell jqGrid add nbsp in order to show borders (IE bug).
When the cell is edited (in all edited modules) the empty cell is converted to empty string and when we save empty value we again add nbsp.
Some databases like PostgreSql add spaces when you use db type of type char.
Regards
Tony
Hello,
Do you have any other content within a cell? I mean other html tags.
Regards
Tony
If possible send me a link – otherwiese I can't help.
Regards
Tony
Hello,
The function can be extended. You can pass to the function additional parameter – where the grid properties can be extended.
Regards
Tony
Hello,
Use 3.5 version of jqGrid
Regards
Tony
Hello,
In your head section after you load the datepicker css set
.ui-datepicker : {zIndex:1200;}
Edit:
The above code is wrong. We should as Nathan say:
.ui-datepicker {zIndex:1200;}
Hello,
Good idea, something like before constructing
Hello,
Whne you cahnge the date field use setGridParam to set the new editurl
Regards
Tony
Hello,
It is a common problem in IE. This bug is also present in 3.5 version of jqGrid. We search for solution.
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top