Sure. I can whip up a link/example up tonight.
Thanks
tim
I definitely do not want to pass this onto 3rd parties (other than jqGrid), but from what I can tell, there is a general deployment problem there.
Can you please send us a live link where we can see this online?
Regards,
Rumen Stankov
tony said:
Hello,
Did you mean
jQuery.jgrid.edit or jQuery.jqgrid.edit – there is a difference
2. I think yes this is possible
Regards
Tony
Hi Tony,
Yes, the error was indeed jQuery.jgrid.edit is undefined, sorry for the typo.
Also, I worked around number 2. Basically

I get this error in Internet Explorer
Detalles de error de p
thanks a lot for your fast answer, i will give it a try
This one is very hard to tell. By Windows you mean end-users are using Windows based browsers or that the host is Windows based? I assume the second one.
Most probably there is a deployment problem and I suggest using FireBug for FireFox to see what happens (what gets sent from server to client) — this will help you a lot in locating the error. Another thing you can try is handling the loadError event of the grid and getting the error (if any) there.
Regards,
Rumen (Trirand)
Hi Tony,
I'm using v36 + cellEdit + treegrid. I have no reference to trigger('reloadGrid').
I expand out my treegrid until I have a scollbar in the browser. Scoll to the bottom then select a cell which pushes the page up to the top.
tim
The first parameter to navButtonAdd is the ID of pager, e.g. in your case “#pager2”. The second parameter was just taken out of context from the example, in reality, you just do not need it. For example this is how you can have a “Toggle Filtering ToolBar” button in your toolbar
.navGrid('#pager2',{edit:false,add:false,del:false,search:false,refresh:false}) .navButtonAdd(“#pager2″,{caption:”Toggle”,title:”Toggle Search Toolbar”, buttonicon :'ui-icon-pin-s', onClickButton:function(){ mygrid[0].toggleToolbar() } })
There is a PDF help file in the Download section of this site, please download and open it and check out the “Custom Buttons” section.
Rumen Stankov
Trirand
Can you please copy / paste your grid definition here? From experience, this happens usually when “editUrl” is not set. In order to add / delete / edit items, you need editUrl set, in addition to just url.
You can view the HTML source of some of our editing examples to see how this works.
Regards,
Rumen Stankov
Trirand
To be Honest, i really just need the bottom bar to say:
Ah, yes, it works,
i did not notice that hidden fields are same text inputs with display:none
Thanks
I just have about same problem,
if i set
put the following codes before jQuery('.listFlex').jqGrid
jQuery(document).ready(function(){
add following codes after
thanks. that worked
This is the correct behavior that the grid should take action. If the checkbox is disabled it should not select the rows, if it is doing it then that is not the proper behavior. Moreover wherever you have implemented that code to disable the checkbox each time you have to call “beforeSelectRow” handler.
Varun
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top