Thank you!
for reason the bbcodes are not working
here’s the code
afterSubmitCell:function(serverresponse, rowid, cellname, value, iRow, iCol){
s = serverresponse.responseText;
if ($.trim(s) != 1){
return [false,s]
}
else
return [true,””];
},
Hi Tony,
Thank you for quick reply. Unfortunately, I cannot provide a link since the grid is dynamically generated as part of huge application
Although, I think I found the issue, seems in version 4.8.2 gridview is set to true by default. I had to explicitly set gridview:false since I am using subgrid
When I looked at the docs, seems like the default for gridview is always false – so I assumed it would be false since I did not set it to true.
Kris
Hi Tony,
based on some the post, I commented out the following in jquery.jqgrid.min.js
c.p.knv||b(c).jqGrid(“GridNav”)
Its seems to have fixed the problem, but I am not sure if this is right fix.
If you could review this, would be appreciated.
Thanks,
Kris
Hi justinkneff,
If you are using jquery ui autocomplete with cell edit in jqgrid – you can do this as follows
afterEditCell:function(rowid,cellname,value,iRow,iCol)
{
if(cellname=='column_name')
{
jQuery(“#”+iRow+”_column_name”).autocomplete({source:,delay:500});
}
}
If you are using inline edit – call this onedit
Hope this helps.
Thanks,
kris
Hi Tony,
The mobile version looks great! looking forward to full functionality
Hi Tony,
Checking if you had a chance to release the apha version of the grid for jquery mobile.
I think this will be amazing for mobile grid functionality.
really appreciate all the effort!
Kris
Hi Tony,
Anys ideas as to when you will have the jqgrid mobile version?
Instead of window.open – could you make an ajax call and open the window in diaglog and call the resetSelection in the loadComplete event.
you can try jQuery('#list').jqGrid('resetSelection');
after you open the url
Hello Tony,
Since no one has replied, just want to get your input if it is possible to attach grid for edittype 'select' –
Make sure your order of scripts is correct. Include jquery first.
Hi Tony,
I did alert the id, it works fine. I was able to find a solution from this forum. here is the link
/blog/?page_id=393/bugs/4-2-0-g-split-is-not-a-function-error/
Thanks,
Kris
1 |
create a variable to hold your grid<br /><br />var mygrid;<br /><br />var mygrid = $("#list").....<br /><br />then call <br />mygrid[0].triggerToolbar(); |
I figured it out.
I just use the loadComplete event to add cluetip
Thanks,
Kris
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top