Hello,
Please before posting be a sure that you have read carfully the install documentation.
You have a error
<script src="includes/classes/jqgrid/js/i18n/grid.locale-en.js” type=”text/javascript”>
<script src="includes/classes/jqgrid/js/jquery-1.4.2.min.js” type=”text/javascript”>
<script src="includes/classes/jqgrid/js/jquery.jqGrid.min.js” type=”text/javascript”>
Should be
<script src="includes/classes/jqgrid/js/jquery-1.4.2.min.js" type="text/javascript">
<script src="includes/classes/jqgrid/js/i18n/grid.locale-en.js" type="text/javascript">
<script src="includes/classes/jqgrid/js/jquery.jqGrid.min.js" type="text/javascript">
i.e jquery should be included first
Additionally to that you have a couple of errors server side. Please check your code
Hello Reg,
Instead of serialize I recommend you to use getDataIDs method to obtain the ids of the grid and post them to the server.
Regards
Tony
Hello,
Look at afterSubmit event here:
/jqgridwiki/doku.php?id=wiki:form_editing#editgridrow
Regards
Tony
Hello,
Where appear exatly the error?
If you use the old json lib does the error appear?
Regards
Tony
Hello,
Could you please post the entry grid configuration and a little data from the response, or send me to a e-mail.
Thank you.
Best Regards
Tony
Hello,
What does not work?
If you look at the demo – what is new in 3.7 does the refresh button work?
Regards
Tony
Hello,
How do you compare the date?
Also in the cell content we put #160, because of the IE bug which does not show borders on the table cell when the value is empty.
Best Regards
Tony
Hello,
Just do the same as described from you. For me there is no problem. I'm using windows task manager on Windows XP.
Kind Regards
Tony
Hello Mike,
Instead that I point you to the right direction, it seems that you do not have read the docs to the end.
You should read the other chapter from the docs – JSON dot notation.
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data#json_dot_notation
So in order to work this yo should first configurire the jsonReader
jsonReader : {
root : “states.state”,
repeatitems: false
}
and then in your colModel to you the property jsonmap. I will do for the first field, you will finish the other.
colModel:[
{name:'name',index:'name', width:75, jsonmap:”@attributes.name”}
…
// do it for others
},
]
Hope this help.
Best Regards
Tony
Hello Reg,
The problem you have is
You used a old autocomplete plugin, which work quite diffrent from those provided in jQuery UI 1.8.2.
In order to resolve:
1. You should change your code according to the new plugin
or
2. If you download the jQuery UI do not mark the autocomplete widget and use the old one. Do not forget in this case to include the old autocomplete in head section
Regards
Tony
Hello Reg,
The way that you use this is not correct. The sortable rows method should not be called in grid Complete event, but after the creation of the grid.
Go into the demo
New in version 3.6 => Sortable Row example
There is a code which will give you a idea.
Also you can set the update event in the same method
jQuery(“#sortrows”).jqGrid('sortableRows', {
Hello,
Yes this is possible. In principe you can use beforeShowForm event to do this. There are a lot of examples in this forum
Best Regards
Tony
Hello,
Please post your entry grid configuration
Thank you
Best Regards
Tony
Hello,
Yes it is possible:
$(“#mybutton”).click(function(){
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top