ui-soxo-bootstrap-core 2.4.25-dev.21 → 2.4.25-dev.22
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.
|
@@ -614,6 +614,8 @@ function GuestList({
|
|
|
614
614
|
{
|
|
615
615
|
title: '#',
|
|
616
616
|
dataIndex: 'index',
|
|
617
|
+
key: 'ColumnIndex',
|
|
618
|
+
width: 60,
|
|
617
619
|
render: (value, item, index) => index + 1,
|
|
618
620
|
key: 'ColumnIndex',
|
|
619
621
|
fixed: isFixedIndex ? 'left' : null,
|
|
@@ -777,6 +779,8 @@ function GuestList({
|
|
|
777
779
|
field: entry.field,
|
|
778
780
|
title: entry.title,
|
|
779
781
|
key: entry.field,
|
|
782
|
+
width: entry.width || 160,
|
|
783
|
+
ellipsis: true,
|
|
780
784
|
fixed: entry.isFixedColumn ? entry.isFixedColumn : null, // Conditionally setting the 'fixed' key to 'left' if 'isColumnStatic' is true; otherwise, setting it to null.
|
|
781
785
|
// Check if filtering is enabled and patients is an array
|
|
782
786
|
filters:
|
|
@@ -1042,7 +1046,8 @@ function GuestList({
|
|
|
1042
1046
|
) : (
|
|
1043
1047
|
<TableComponent
|
|
1044
1048
|
size="small"
|
|
1045
|
-
scroll={{ x:
|
|
1049
|
+
scroll={{ x: 'max-content', y: '60vh' }}
|
|
1050
|
+
tableLayout="fixed"
|
|
1046
1051
|
sticky
|
|
1047
1052
|
rowKey={(record) => record.OpNo}
|
|
1048
1053
|
dataSource={filtered ? filtered : patients} // In case if there is no filtered values we can use patient data
|