我有一个html表,其中的逻辑中包含以下两列:iterate:
<logic:notPresent name="divisionLevel"><td><input type="text" name="txtBeginDate${ctr+1}" id="txtBeginDate${ctr+1}" class="is-datepick" style="width: 100%;" value="<bean:write name="row" property="reportingBeginDte"/>"/></td></logic:notPresent>
<logic:notPresent name="divisionLevel"><td><input type="text" name="txtEndDate${ctr+1}" id="txtEndDate${ctr+1}" class="is-datepick" style="width: 100%;" value="<bean:write name="row" property="reportingEndDte"/>"/></td></logic:notPresent>
问题在于日历,当您单击日期时,仅显示左半部分。我已经尝试了一些z-index
,并且只有几个div,但是不管我怎么尝试,它仍然是部分日期选择器。
部分日历外观的屏幕截图:
更新:已解决!感谢所有花时间帮助您的人。要修复,我在display:none样式上添加了表格ID:
#maintable td:nth-child(1){ display : none;}
#maintable td:nth-child(2){ display : none;}
#maintable td:nth-child(3){ display : none;}
#maintable td:nth-child(4){ display : none;}