issue: customer communication contacts grid height.

change: replace schedule date control.
change: date validation from 1753-01-01 to 9999-12-31.
This commit is contained in:
2024-04-07 08:39:44 +08:00
parent 0ff48a0ac4
commit b6fe3e34f5
9 changed files with 66 additions and 16 deletions

View File

@ -790,9 +790,9 @@ export default class CustomerCommunication {
div.style.display = 'none';
}
div.className = 'contacts-record';
div.style.maxHeight = '200px';
// div.style.maxHeight = '200px';
div.style.width = '675px';
div.style.overflow = 'auto';
// div.style.overflow = 'auto';
}),
createElement('div', div => {
div.style.fontWeight = 'bold';
@ -800,9 +800,9 @@ export default class CustomerCommunication {
}),
createElement('div', div => {
div.className = 'contacts-wo';
div.style.maxHeight = '200px';
// div.style.maxHeight = '200px';
div.style.width = '675px';
div.style.overflow = 'auto';
// div.style.overflow = 'auto';
})
)
});

View File

@ -16,6 +16,7 @@
>.ui-grid {
overflow-x: visible;
max-height: 200px;
}
}
}