Hi Team,
I could control my event and edit-form in readonly or not, but once my textarea had lots of contents I couldn’t add scroll bar to see all them.
Dear team, was there a way to add scroll bar in readonly-form?
Thanks,
Judo
Hi Team,
I could control my event and edit-form in readonly or not, but once my textarea had lots of contents I couldn’t add scroll bar to see all them.
Dear team, was there a way to add scroll bar in readonly-form?
Thanks,
Judo
It can be done by code modification, but there is more easy way, next style must enable scrolls for the readonly areas
.dhx_cal_ltext span.dhx_text_disabled {
width:100%;
height:100%;
display:block;
overflow:auto;
}
Thanks Stanislav very much.