|
11 | 11 |
|
12 | 12 | <Class name="DeepSee.LightPivotTable">
|
13 | 13 | <Super>%DeepSee.Component.Portlet.abstractPortlet</Super>
|
14 |
| -<TimeChanged>63575,60589.683103</TimeChanged> |
| 14 | +<TimeChanged>63575,78017.533889</TimeChanged> |
15 | 15 | <TimeCreated>63515,61322.546099</TimeCreated>
|
16 | 16 |
|
17 | 17 | <Parameter name="INCLUDEFILES">
|
|
31 | 31 | </Property>
|
32 | 32 |
|
33 | 33 | <Property name="Pagination">
|
34 |
| -<Type>%Boolean</Type> |
| 34 | +<Type>%Integer</Type> |
35 | 35 | </Property>
|
36 | 36 |
|
37 | 37 | <Property name="FixTotals">
|
38 | 38 | <Type>%Boolean</Type>
|
39 | 39 | </Property>
|
40 | 40 |
|
| 41 | +<Property name="ListingColumnMinWidth"> |
| 42 | +<Type>%Integer</Type> |
| 43 | +</Property> |
| 44 | + |
41 | 45 | <Method name="%OnGetPortletName">
|
42 | 46 | <ClassMethod>1</ClassMethod>
|
43 | 47 | <ReturnType>%String</ReturnType>
|
|
64 | 68 | set pInfo($I(pInfo)) = $LB("ExportCSV", 1, "%Boolean", $$$Text("Export to CSV", "%DeepSee"), "Show export to CSV format button")
|
65 | 69 | set pInfo($I(pInfo)) = $LB("Pagination", 0, "%Integer", $$$Text("Pagination", "%DeepSee"), "Enable pagination")
|
66 | 70 | set pInfo($I(pInfo)) = $LB("FixTotals", 0, "%Boolean", $$$Text("Fix totals", "%DeepSee"), "Fix totals in header")
|
| 71 | + set pInfo($I(pInfo)) = $LB("ListingColumnMinWidth", 0, "%Integer", $$$Text("Min cell width for listing", "%DeepSee"), "Minimal column width in listing") |
67 | 72 |
|
68 | 73 | quit $$$OK
|
69 | 74 | ]]></Implementation>
|
|
241 | 246 | if (parseInt(container.getAttribute("pagination"))) {
|
242 | 247 | setup["pagination"] = parseInt(container.getAttribute("pagination"))
|
243 | 248 | }
|
| 249 | + if (parseInt(container.getAttribute("listingColumnMinWidth"))) { |
| 250 | + setup["listingColumnMinWidth"] = parseInt(container.getAttribute("listingColumnMinWidth")) |
| 251 | + } |
244 | 252 |
|
245 | 253 | _.LightPivotTable = new LightPivotTable(setup);
|
246 | 254 |
|
|
337 | 345 | }
|
338 | 346 |
|
339 | 347 | &html<
|
340 |
| - <div fixTotals="#(..FixTotals)#" pagination="#(..Pagination)#" export-csv="#(..ExportCSV)#" data-source="#(..DataSource)#" show-summary="#(..ShowSummary)#" class="lpt-container" style="position: absolute; left: 0; bottom: 0; width: 100%; height: 100%;"> |
| 348 | + <div listingColumnMinWidth="#(..ListingColumnMinWidth)#" fixTotals="#(..FixTotals)#" pagination="#(..Pagination)#" export-csv="#(..ExportCSV)#" data-source="#(..DataSource)#" show-summary="#(..ShowSummary)#" class="lpt-container" style="position: absolute; left: 0; bottom: 0; width: 100%; height: 100%;"> |
341 | 349 |
|
342 | 350 | </div>
|
343 | 351 | >
|
|
0 commit comments