|
11 | 11 |
|
12 | 12 | <Class name="DeepSee.LightPivotTable"> |
13 | 13 | <Super>%DeepSee.Component.Portlet.abstractPortlet</Super> |
14 | | -<TimeChanged>63699,75399.850452</TimeChanged> |
| 14 | +<TimeChanged>63699,80103.61817</TimeChanged> |
15 | 15 | <TimeCreated>63515,61322.546099</TimeCreated> |
16 | 16 |
|
17 | 17 | <Parameter name="INCLUDEFILES"> |
|
58 | 58 | <Type>%Boolean</Type> |
59 | 59 | </Property> |
60 | 60 |
|
| 61 | +<Property name="ShowRowNumbers"> |
| 62 | +<Type>%Boolean</Type> |
| 63 | +</Property> |
| 64 | + |
61 | 65 | <Method name="%OnGetPortletName"> |
62 | 66 | <ClassMethod>1</ClassMethod> |
63 | 67 | <ReturnType>%String</ReturnType> |
|
89 | 93 | set pInfo($I(pInfo)) = $LB("ColumnResizing", 1, "%Boolean", "Column resizing", "Allow resizing columns with cursor") |
90 | 94 | set pInfo($I(pInfo)) = $LB("EnableSearch", 1, "%Boolean", "Enable listing search", "Show search tools in listing mode") |
91 | 95 | set pInfo($I(pInfo)) = $LB("StretchColumns", 0, "%Boolean", "Stretch columns", "Stretch columns to fill all available width") |
| 96 | + set pInfo($I(pInfo)) = $LB("ShowRowNumbers", 0, "%Boolean", "Show row nums", "Show row number in listing") |
92 | 97 |
|
93 | 98 | quit $$$OK |
94 | 99 | ]]></Implementation> |
|
272 | 277 | setup["columnResizing"] = !!parseInt(container.getAttribute("columnResizing")); |
273 | 278 | setup["enableSearch"] = !!parseInt(container.getAttribute("enableSearch")); |
274 | 279 | setup["stretchColumns"] = !!parseInt(container.getAttribute("stretchColumns")); |
| 280 | + setup["showRowNumbers"] = !!parseInt(container.getAttribute("showRowNumbers")); |
275 | 281 | if (parseInt(container.getAttribute("pagination"))) { |
276 | 282 | setup["pagination"] = parseInt(container.getAttribute("pagination")) |
277 | 283 | } |
|
408 | 414 | } |
409 | 415 |
|
410 | 416 | &html< |
411 | | - <div stretchColumns="#(..StretchColumns)#" namespace="#($NAMESPACE)#" enableSearch="#(..EnableSearch)#" columnResizing="#(..ColumnResizing)#" session="#(%session.CSPSessionCookie)#" maxHeaderWidth="#(..MaxHeaderWidth)#" listingColumnMinWidth="#(..ListingColumnMinWidth)#" fixTotals="#(..FixTotals)#" pagination="#(..Pagination)#" export-csv="#(..ExportCSV)#" data-source="#(..DataSourceApp)#" show-summary="#(..ShowSummary)#" class="lpt-container" style="position: absolute; left: 0; bottom: 0; width: 100%; height: 100%;"> |
| 417 | + <div stretchColumns="#(..StretchColumns)#" showRowNumbers="#(..ShowRowNumbers)#" namespace="#($NAMESPACE)#" enableSearch="#(..EnableSearch)#" columnResizing="#(..ColumnResizing)#" session="#(%session.CSPSessionCookie)#" maxHeaderWidth="#(..MaxHeaderWidth)#" listingColumnMinWidth="#(..ListingColumnMinWidth)#" fixTotals="#(..FixTotals)#" pagination="#(..Pagination)#" export-csv="#(..ExportCSV)#" data-source="#(..DataSourceApp)#" show-summary="#(..ShowSummary)#" class="lpt-container" style="position: absolute; left: 0; bottom: 0; width: 100%; height: 100%;"> |
412 | 418 |
|
413 | 419 | </div> |
414 | 420 | > |
|
0 commit comments