jQWidgets Forums
Forum Replies Created
-
Author
-
January 26, 2016 at 6:23 pm in reply to: export to pdf in Firefox has data cells writeover by other cells export to pdf in Firefox has data cells writeover by other cells #80798
I’m sorry for the duplicate post, I just wanted to add details on something I found that might the the cause. Is there any work around to fix this though ?
January 20, 2016 at 9:23 pm in reply to: export to pdf column text wrap export to pdf column text wrap #80602Okay, so you can easily reproduce this behavior in jsfiddle: http://jsfiddle.net/3cymb54r/6/
The cell is editable, so modify the text in any cell to make it very LONG, for example I just copy “Espresso con Panna” and paste it 3 times to make the string 3x longer.Then export to PDF using Firefox, you will see that it’ll ram all over the next column.
January 18, 2016 at 6:45 pm in reply to: export to pdf column text wrap export to pdf column text wrap #80494Hi Peter,
Maybe you can try very long data in a column, or with more columns than in your example above in order to reproduce this behavior? Here is a screenshot http://tinypic.com/r/2edv61s/9
In Chrome or Safari, if the data in a column is too long it’ll just add ‘…’ at the end instead of bleeding over, I’ve searching around and it seems like you don’t have landscape orientation for pdf still ?
January 15, 2016 at 8:22 pm in reply to: export to pdf column text wrap export to pdf column text wrap #80447I am having the exact same problem, pdf export in Firefox.
Hi apj,
This is what jqxGrid’s filtering does. By default, it’ll be ‘AND’ operator between filter groups, that’s why yours has Firstname Andrew AND Lastname Andrew.
You should do an ‘OR’ operator between your filtergroup and filtergroup2 to get Firstname as Andrew ‘OR’ Lastname as Andrew, like from this example:
https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgrid/jquery-grid-filtering.htmRead the “Add filters to multiple columns through the API.” the last example code in the bottom, I used it for my Search box contain a string to filter all my grid columns.
For example you have to include: filtergroup.operator = ‘or’; after u create your filtergroup and filtergroup2.operator = ‘or’ also after u create it.Hope this helps, or at least what you’re looking for
September 18, 2015 at 7:04 pm in reply to: Export Data to PDF from jqxGrid failed ? Export Data to PDF from jqxGrid failed ? #75991Well, downloading the newest version jqwidgets-3.8.2 fixed it
(been using 3.5.0 for a while). Though some columns got messed up, somehow the data in those column was replaced by 9/18/15 lol.
The limitation of this pdf export is that I can’t choose the page orientation to be landscape. I do really hope the developer team will consider to implement this in the future (Please please !! :)). I’m sure a lot of data table is in need of landscape mode.
Thanks,
KamelotSeptember 18, 2015 at 6:31 pm in reply to: Export Data to PDF from jqxGrid failed ? Export Data to PDF from jqxGrid failed ? #75987Thanks Peter for replying,
I figured the “Resource interpreted as Document but transferred with MIME ……” thing is just Chrome’s problem, it was a regular message and not an error or anything.
I got the same message when I exported the CSV and JSON; however, I was able to open them just fine. So this message is not the reason why PDF file is corrupted after being exported (Failed to load PDF document)
, any help to solve this would be very appreciated !!!
Cheers,
Kamelot. -
AuthorPosts