jQWidgets Forums
Forum Replies Created
-
Author
-
July 5, 2012 at 9:51 am in reply to: CellRenderer with CellsFormat CellRenderer with CellsFormat #5687
Worked a treat with but have a small issue now.
I have a localization object setup
var localizationobj = $("#jqxgrid").jqxGrid('gridlocalization');
localizationobj.currencysymbol = "€";
localizationobj.currencysymbolposition = "before";
localizationobj.decimalseparator = ".";
localizationobj.thousandsseparator = ",";
localizationobj.percentsymbol = "%";
When applying the cellsformat with ‘c2’ it reverts back to ‘$’ sign.
Also does the ‘p’ work to format the number as a percenatge while adding the % to the end of the number or does it just format the number and we have to append the % sign
Thanks again.
July 5, 2012 at 7:52 am in reply to: CellRenderer with CellsFormat CellRenderer with CellsFormat #5683Thats perfect, thank you very much. Love the grid.
June 18, 2012 at 3:32 pm in reply to: Make "total row" unsortable in GridView Make "total row" unsortable in GridView #5061No problem.
Thanks for your quick reply. Looking forward to the next release.
June 18, 2012 at 1:55 pm in reply to: Make "total row" unsortable in GridView Make "total row" unsortable in GridView #5057Hi Peter,
I am not using custom or server side sorting.
I load the grid through an ajax call. This dataset already has a totals row. When I sort on a column I call
var totalsrow;
$(“#jqxgrid”).bind(“sort”, function (event) {
totalsrow = $(“#jqxgrid”).jqxGrid(‘getrowdata’, lasrow);
$(“#jqxgrid”).jqxGrid(‘deleterow’, lasrow);
});I am looking for a way to add the row once the sort is complete and the grid has refreshed.
$(“#jqxgrid”).jqxGrid(‘addrow’, null, totalrow, ‘last’);
Is this possible?
Thanks
June 18, 2012 at 10:30 am in reply to: Make "total row" unsortable in GridView Make "total row" unsortable in GridView #5030I’m still working with a totals row for the grid and I’m having trouble sorting.
I have a TotalsRow. When I sort the grid I remove the TotalsRow in the bind.(“sort”) event. I now want to re-add the row when the bind.(“sort”) is complete.
What grid event could be used to add the row when sorting is finished?
Thanks.
June 10, 2012 at 10:34 pm in reply to: jqxGrid – loader.gif (loading image) not being displayed Chrome and Explorer jqxGrid – loader.gif (loading image) not being displayed Chrome and Explorer #4785It’s fixed.
it was due to a wrong attribute “async” on the source object. It works perfectly now.
Thanks, Peter !
June 9, 2012 at 11:17 am in reply to: jqxGrid – loader.gif (loading image) not being displayed Chrome and Explorer jqxGrid – loader.gif (loading image) not being displayed Chrome and Explorer #4732Hi Peter,
you’re right. Your examples work. They also work on my end.
The problem comes when I insert some ASP.net controls in the body of my file .aspx
For example:
I have the same issue with internet explorer. With Firefox works just fine.
Do you think there’s a solution for that problem?
PS: I thought about building my own “loading effect” with a floating thickbox or something like that.
June 8, 2012 at 4:18 pm in reply to: issue when re-rendering jqxGrid issue when re-rendering jqxGrid #4715Hi Peter,
I just found the solution:
http://www.jqwidgets.com/community/topic/error-reloading-grid/
It works just fine. I think that’s the best solution since I’ll be calling Server side to call the “var source”.
Thanks anyway!
-
AuthorPosts