Customisible stream post view
Collapse
X
-
Isn't it possible to utilize view setup helpers there? I'm not sure, but there's a chance.
I also suggest considering monkey patching. It allows extending views.If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks. -
I try setup handlers on Stream and on Note:
{
"viewSetupHandlers": {
"record/edit": [
"__APPEND__",
"bpm2bVoice:handlers/postedit"
],
"record/detail": [
"__APPEND__",
"bpm2bVoice:handlers/postedit"
],
"list": [
"__APPEND__",
"bpm2bVoice:handlers/postedit"
],
"edit": [
"__APPEND__",
"bpm2bVoice:handlers/postedit"
]
}
}
the handler is triggered only in the modal message editing window. In all other places - no, not even in /#Stream
all view in the "stream" tree views is absoluteComment
Comment