Skip to content

Commit

Permalink
update to documentation to point to the latest version, also plugin.x…
Browse files Browse the repository at this point in the history
…ml updated
  • Loading branch information
jakubnabrdalik committed Apr 12, 2014
1 parent e86dc60 commit eba273c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ of AdditionalSheet that shares the same row/cell manipulation API as the exporte
def withProperties = ['name', 'description', 'validTill', 'productNumber', 'price.value']
new WebXlsxExporter().with {
setResponseHeaders(response)
setResponseHeaders(response) print methods of controller
sheet('second sheet').with {
fillHeader(withProperties)
add( products, withProperties )
Expand Down Expand Up @@ -117,7 +117,7 @@ And if you'd like to change the name of default sheet, just set it before first
...
}
```

print methods of controller
#How to export my own types?

This plugin handles basic property types pretty well (String, Date, Boolean, Timestamp, NullObject, Long, Integer, BigDecimal, BigInteger, Byte, Double, Float, Short), it also handles nested properties, and if everything fails, tries to call toString(). But sooner or later, you'll want to export a property of a different type the way you like it.
Expand Down Expand Up @@ -235,7 +235,7 @@ grails.project.dependency.resolution = {
}
plugins {
runtime (":excel-export:0.1.10") //#2 important thing
runtime (":excel-export:0.2.1") //#2 important thing
...
}
...
Expand Down Expand Up @@ -287,7 +287,7 @@ Hope it helps.

#License

Copyright 2012 TouK
Copyright 2012-2014 TouK

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<plugin name='excel-export' version='0.1.9' grailsVersion='2.0 &gt; *'>
<plugin name='excel-export' version='0.2.1' grailsVersion='2.0 &gt; *'>
<author>Jakub Nabrdalik</author>
<authorEmail>[email protected]</authorEmail>
<title>Excel Export Plugin</title>
Expand Down

0 comments on commit eba273c

Please sign in to comment.