Force jQuery UI Datepicker to display below input field

后端 未结 4 1044
北恋
北恋 2021-02-15 23:15

I have a page which contains a form and few fields. My issues are as follow:

  1. I am trying to force jQuery UI datepicker to display below the input field.
4条回答
  •  隐瞒了意图╮
    2021-02-15 23:56

    A simple fix is by adjusting the frontend using CSS for the CALENDER Box.

    Add the following to your CSS file.

        .ui-datepicker{
            margin-top: 300px;
        }
    

    I tried it in your Fiddle link, was working perfectly fine.

提交回复
热议问题