Hello,
Yes currently this is not possible, but I see some point to solve this.
There is possibility to add a event when you stop to resize a column and after that to call setGridWidth method.
Another possible solution is to use forceFit: true, but in this case you will have only one grid width.
Regards
Tony
Hello,
Use datatype as function. This is exactly what you need. See examples in What is new in 3.4 version.
Regards
Tony
Hello,
There is a event which is called when you click this button. See docs.
Regards
Tony
Hello,
You are right. Thanks. Will correct this.
Regards
Tony
Hello,
Please do not mix inline edit and cell edit. There is such example in Demo Page. Look in Integrations -> UI-Datepicker
Regards
Tony
Hello,
setTimeout(function() { $(”#list”).trigger(”reloadGrid”); },500);
To submit every time 🙂
Regards
Tony
Hello,
As mentioted in my previous post currently there is a no way to add classes direct from server response. You should use java script at client side. I consider this to be added in 3.5 release.
Regards
Tony
Hello,
Not a bug. Look at availabel additional methods in grid.custom.js – there is a method SortGrid. See docs too.
Regards
Tony
Hello,
If I look in you configuration you use both – inline edit and cell edit. Also to be a clear – you should either use cellEdit: true without using editRow and restoreRow or vice versa.
Regards
Tony
Hello,
Why do you try to modify the jqModal to do this. I think a better idea is to use onInitializeForm event to attach the editor for particular field.
Regards
Tony
Hello,
You can construct then own array and use addRowData or setRowData methods. See docs.
Regards
Tony
Hello,
Use afterInsertRow event (imediate adding of the class) or gridComplete event to attach a class something like this: (Suppose you have grid with mygrid id)
gridComplete: function (){
$(“tr”,”#mygrid”).each(function(){
$(this).addClass(“myclass”);
});
Hope this help
Regards
Tony
Hello,
What you deliver to the grid actually – json or xml data source. As of your code you type:
Hello,
The expression jQuery(”#setcols”).jqGrid is not a function
tell me that the jqGrid base library is not loaded.
Which browser do you use? If this is a Opera there is a bug in the loader.
Best Regards
Tony
Hello,
Thanks will check. Some other user point for the same problem in Chrome (both use the same engine)
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top