@fto-consult/expo-ui 2.37.1 → 2.37.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -394,8 +394,8 @@ const DatagridFactory = (Factory)=>{
|
|
|
394
394
|
filter = defaultFunc(filter,x=>true);
|
|
395
395
|
const showFooters = this.canShowFooters();
|
|
396
396
|
let restItems = [];
|
|
397
|
-
|
|
398
|
-
|
|
397
|
+
let max = this.getMaxSelectableRows();
|
|
398
|
+
if(max && this.isSelectableMultiple()){
|
|
399
399
|
max = max.formatNumber();
|
|
400
400
|
restItems = [
|
|
401
401
|
{
|
|
@@ -413,7 +413,7 @@ const DatagridFactory = (Factory)=>{
|
|
|
413
413
|
icon :"select"
|
|
414
414
|
}
|
|
415
415
|
]
|
|
416
|
-
}
|
|
416
|
+
}
|
|
417
417
|
const {y} = this.state.layout;
|
|
418
418
|
const {height:winheight,width:winWidth} = Dimensions.get("window");
|
|
419
419
|
const containerHeight = winheight - y;
|
|
@@ -2787,7 +2787,7 @@ export default class CommonDatagridComponent extends AppComponent {
|
|
|
2787
2787
|
abreviate = {this.state.abreviateValues}
|
|
2788
2788
|
aggregatorFunction = {this.getActiveAggregatorFunction().code}
|
|
2789
2789
|
aggregatorFunctions = {this.aggregatorFunctions}
|
|
2790
|
-
displayLabel = {
|
|
2790
|
+
displayLabel = {this.isAccordion()}
|
|
2791
2791
|
//anchorProps = {{style:[theme.styles.ph1,theme.styles.mh05]}}
|
|
2792
2792
|
/>
|
|
2793
2793
|
</View>)
|