RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-25 Thread Flynn, Timothy J
, Timothy J Sent: Wednesday, May 24, 2006 9:55 AM To: rt-users@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than in search After reviewing my changes further I believe I came up with a better solution for escaping tabs. In the file rtroot/share/html/Search

Re: [rt-users] Spreadsheet view displays more columns than in search

2006-05-25 Thread Jesse Vincent
@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than in search After reviewing my changes further I believe I came up with a better solution for escaping tabs. In the file rtroot/share/html/Search/Elements/Results.tsv Instead of the line: $val =~ s/(\n

RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-24 Thread Flynn, Timothy J
- From: Schultz, Eric [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 3:57 PM To: Flynn, Timothy J; rt-users@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than in search Only thing I can think of is that you somehow modified the query before doing

RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-24 Thread Flynn, Timothy J
for the columns! -Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Flynn, Timothy J Sent: Wednesday, May 24, 2006 8:05 AM To: rt-users@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than in search Eric

RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-24 Thread Flynn, Timothy J
@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than in search Woops, just found this: $val =~ s/(\n|\r)//g; Looks like I just need to change to: $val =~ s/(\n|\r|\t)//g; -Tim -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-23 Thread Schultz, Eric
When my users are searching for tickets, they select the columns they want and then search. A lot of them like the spreadsheet view so they can make reports. One problem is in the spreadsheet view there are a lot of extra columns that they didn't add. They appear to be most of the default

RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-23 Thread Flynn, Timothy J
escaped that is affecting the query? -Tim -Original Message- From: Schultz, Eric [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 3:32 PM To: Flynn, Timothy J; rt-users@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than in search When my

RE: [rt-users] Spreadsheet view displays more columns than in search

2006-05-23 Thread Schultz, Eric
not being escaped that is affecting the query? -Tim -Original Message- From: Schultz, Eric [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 3:32 PM To: Flynn, Timothy J; rt-users@lists.bestpractical.com Subject: RE: [rt-users] Spreadsheet view displays more columns than