thanks for this tool.
Is it possible to increase the height size of the input field in a form.
I tried to modify css bt it doesn’t work.
Thanks.
thanks for this tool.
Is it possible to increase the height size of the input field in a form.
I tried to modify css bt it doesn’t work.
Thanks.
Hi,
it is possible. Try to do the following:
{ view:“text”, height: 40, … },
{ view:“text”, height: 40, css: “big”, … },
.big .dhx_el_box, .big .dhx_el_box input {
height: 35px;
line-height: 35px;
}
.big label.dhx_inp_label{
line-height: 35px;
}
Hi,
It works …
My problem was that I didn’t increase the height view.
Thank you very much.