-
29 Mar 2012 9:15 AM #21
"This variant for grouped headers ( column group or nested headers) and grid grouping".
Unfortunately, it does not work with three and more level headers.
-
1 Apr 2012 2:54 PM #22
First of all, thanks a lot for great plugin.
Btw, I implement grid with remote store and paging. At any time, there are only pageSize records, and hence when print, it only print those pageSize records. How can I modify your plugin to make it print the whole remote store.
Thanks a lot in advance.
-
8 May 2012 12:28 AM #23
Any solution to make a xtype rownumberer working? Right now it outputs only {}
-
17 May 2012 10:18 PM #24
Getting error with ExtJS 4.1
Getting error with ExtJS 4.1
Hi everyone,
Thanks a lot Loiane and Ed for this great extension.
I'm getting the error that I added below while using this with ExtJS 4.1, I'll be happy if someone can help me.
Thanks in advance.
With regards,
T
Code:missing ) in parenthetical if ((v=fm.0(values['margin']))!==undefined) out.push(v+'')
"People will never forget how you made them feel."
linkedin.com/in/talhakabakus
-
20 May 2012 8:08 AM #25
Error with ExtJS 4.1
Error with ExtJS 4.1
I get this error
Any idea?Code:Uncaught SyntaxError: Unexpected number
-
23 May 2012 6:27 PM #26
-
14 Jun 2012 1:37 PM #27
Printer Plugin doesn't work with action columns
Printer Plugin doesn't work with action columns
This plug in doesn't seem to work with action columns. In Printer.js, some of the algorithms under the print() function that deal with the columns throw an error when it gets to the action column I think.
-
15 Jun 2012 5:51 AM #28"People will never forget how you made them feel."
linkedin.com/in/talhakabakus
-
15 Jun 2012 9:31 AM #29
Printer Plugin w/ Action Columns
Printer Plugin w/ Action Columns
I'm not sure what you are referring to when you say you 'tried that before'...
I was able to get the printer plugin to work with action columns by hacking the code a little bit. I also changed the code so that the grid will only display the columns visible to the user.
Here is my modification for Printer.js
Hope this helps someone who gets errors with action columns.Code:print: function(grid) { //We generate an XTemplate here by using 2 intermediary XTemplates - one to create the header, //the other to create the body (see the escaped {} below) var columns = []; //account for grouped columns Ext.each( grid.view.headerCt.getVisibleGridColumns() , function(c) { // byu_risk3 modification - only print visible columns that user sees // Ext.each( grid.columns , function(c) { // Original code if( c.xtype != "actioncolumn" ){ // byu_risk3 modification - prevent action columns from being included with other columns if(c.items.length > 0) { columns = columns.concat(c.items.items); } else { columns.push(c); } } }); // ...etc
-
15 Jun 2012 10:58 AM #30
@byu_risk3
I mean even if I don't have an 'actioncolumn', it stils gives same error 'Uncaught SyntaxError: Unexpected number'.
"People will never forget how you made them feel."
linkedin.com/in/talhakabakus


Reply With Quote