EXPORT TO EXCEL - not all of long description is exported

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
i realised than when i export to excel, the product long description (which in the database has over 700 charaters) was only exported with the first

200  characters -

I don't want to post this on codeplex if it just happens to me    -  does anyone else experience this?

.
13 years ago
I'm experiencing the exact same issue.

I didn't notice the issue before resubmitting the Excel sheet to my DB, so I lost explanation on some products :-(

Will you report a bug on this?
13 years ago
Check out ExportManger.cs


int MaxStringLength=200;
tableDefinition.Add("Name", string.Format("nvarchar({0})",maxStringLength));
                tableDefinition.Add("ShortDescription", string.Format("nvarchar({0})", maxStringLength));
                tableDefinition.Add("FullDescription", string.Format("nvarchar({0})", maxStringLength));


According to my understanding just change MaxStringLength.
13 years ago
Hi td yes, i had tried this and a couple of other things in  ExportManger.cs


but nop then throws an error when I try to export the file - I'm missing something but I don't know what ..
13 years ago
Hi TD:  Where is ExportManager.cs located?  I looked in my Admin root folder but couldn't find it.
13 years ago
When we're using NVARCHAR fields with Jet OLEDB the max length is 255. But we can use NTEXT fields.
13 years ago
ccastillo751 wrote:
Hi TD:  Where is ExportManager.cs located?  I looked in my Admin root folder but couldn't find it.


~\Libraries\Nop.BusinessLogic\ExportImport\ExportManager.cs ;)
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.