Skip to content

Commit 48722e6

Browse files
committed
Fix data validation property is missing after saved. Related issue issue qax-os#28.
1 parent 109d8ad commit 48722e6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

xmlWorksheet.go

+11
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ type xlsxWorksheet struct {
1616
SheetProtection *xlsxSheetProtection `xml:"sheetProtection"`
1717
MergeCells *xlsxMergeCells `xml:"mergeCells,omitempty"`
1818
ConditionalFormatting *xlsxConditionalFormatting `xml:"conditionalFormatting"`
19+
DataValidations *xlsxDataValidations `xml:"dataValidations"`
1920
Hyperlinks *xlsxHyperlinks `xml:"hyperlinks"`
2021
PrintOptions *xlsxPrintOptions `xml:"printOptions"`
2122
PageMargins *xlsxPageMargins `xml:"pageMargins"`
@@ -282,6 +283,16 @@ type xlsxMergeCells struct {
282283
Cells []*xlsxMergeCell `xml:"mergeCell,omitempty"`
283284
}
284285

286+
// xlsxDataValidations expresses all data validation information for cells in a
287+
// sheet which have data validation features applied.
288+
type xlsxDataValidations struct {
289+
Count int `xml:"count,attr,omitempty"`
290+
DisablePrompts bool `xml:"disablePrompts,attr,omitempty"`
291+
XWindow int `xml:"xWindow,attr,omitempty"`
292+
YWindow int `xml:"yWindow,attr,omitempty"`
293+
DataValidation string `xml:",innerxml"`
294+
}
295+
285296
// xlsxC directly maps the c element in the namespace
286297
// http://schemas.openxmlformats.org/spreadsheetml/2006/main - currently I have
287298
// not checked it for completeness - it does as much as I need.

0 commit comments

Comments
 (0)