dhtmlx touch input height

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:

  1. set bigger view height:

{ view:“text”, height: 40, … },

  1. add custom className to view:

{ view:“text”, height: 40, css: “big”, … },

  1. add css rules:

.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.