2016-04-08 79 views
1

當我設置dateTime選擇器固定大小時,它將在編輯框下移動日曆圖標。如何解決這個問題?這是我簡單的XPage:設置x頁面日期時間選擇器大小

<?xml version="1.0" encoding="UTF-8"?> 
<xp:view xmlns:xp="http://www.ibm.com/xsp/core" 
    enableModifiedFlag="false" xmlns:xe="http://www.ibm.com/xsp/coreex"> 
    <xp:inputText id="inputText1"> 
     <xp:this.converter> 
      <xp:convertDateTime type="date"></xp:convertDateTime> 
     </xp:this.converter> 
     <xp:dateTimeHelper></xp:dateTimeHelper> 
    </xp:inputText> 
    <xp:br></xp:br> 
    <xp:inputText id="inputText2" style="width:122.0px"> 
     <xp:this.converter> 
      <xp:convertDateTime type="date"></xp:convertDateTime> 
     </xp:this.converter> 
     <xp:dateTimeHelper></xp:dateTimeHelper> 
    </xp:inputText> 
</xp:view> 

,這裏是我所得到的:

enter image description here

那麼,如何設置日期選擇固定大小,並保持圖標內聯?

+0

您的XPage適用於Domino版本9.0.1 FP5的所有可用主題。請檢查您的應用程序中是否使用了可能會違反默認行爲的自定義主題。 –

+0

沒有定製,只是Domino 8.5。我認爲有CSS解決方案 –

回答

0

定義日期時間輸入欄的寬度,而不是(僅多米諾8.5.x的):

.xspInputFieldDateTimePicker .dijitTextBox { 
    width:90px; 
} 

此錯誤不會在多米諾9.0.1發生。

相關問題