Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/sockets/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css 角度UI引导日期选择器宽度问题_Css_Angularjs - Fatal编程技术网

Css 角度UI引导日期选择器宽度问题

Css 角度UI引导日期选择器宽度问题,css,angularjs,Css,Angularjs,我在模式对话框上使用AngularUI引导日期选择器弹出窗口。未根据内部内容正确计算外部边框的宽度。在某些情况下,外盒比内盒大。在其他情况下,外部较小。此外,日期选择器外部的宽度似乎对弹出窗口的宽度有影响。例如,col-sm-4将使边界变小,而col-sm-5将使边界变大 谁能给我指一下正确的方向,看看问题出在哪里 提前谢谢 看看这个: 因此,HTML的相关片段如下所示: <div class="input-group"> <input type="text" clas

我在模式对话框上使用AngularUI引导日期选择器弹出窗口。未根据内部内容正确计算外部边框的宽度。在某些情况下,外盒比内盒大。在其他情况下,外部较小。此外,日期选择器外部的宽度似乎对弹出窗口的宽度有影响。例如,col-sm-4将使边界变小,而col-sm-5将使边界变大

谁能给我指一下正确的方向,看看问题出在哪里

提前谢谢

看看这个:

因此,HTML的相关片段如下所示:

<div class="input-group">
    <input type="text" class="form-control" 
    datepicker-popup="dd.mm.yyyy"
    ng-model="dt"
    is-open="$parent.opened"
    ng-required="true"
    close-text="Close" />
    <span class="input-group-btn">
        <button style="height:34px;" class="btn btn-default" ng-click="open()">
            <i class="icon-calendar"></i>
        </button> <b><- button not working</b>
    </span>
</div>

我刚想出来。这是一个错误。我更改了隐藏在某处的下拉菜单css类,这会影响datepicker布局。

谢谢您的建议。不幸的是,这并不能解决问题。我不能把图片附在我的问题上,否则我会说得更清楚。
<div class="input-group">
    <input type="text" class="form-control" 
    datepicker-popup="dd.mm.yyyy"
    ng-model="dt"
    is-open="$parent.opened"
    ng-required="true"
    close-text="Close" />
    <span class="input-group-btn">
        <button style="height:34px;" class="btn btn-default" ng-click="open()">
            <i class="icon-calendar"></i>
        </button> <b><- button not working</b>
    </span>
</div>