2013-06-25 89 views
0

我已經創建了一個jira自定義字段插件,僅出現在問題視圖屏幕上(因爲將會在字段描述-javascript上預先定義calcualtion)。自定義字段無法顯示在問題視圖屏幕上

但是,這並沒有出現問題的視圖屏幕,即使我需要,即在vm文件中硬編碼值。

當創建「edit.vm」時,它會出現在編輯問題屏幕上,並且在賦值給字段後,它可能出現在問題視圖屏幕上,但是,沒有編輯模板,它不工作並且無法在問題視圖屏幕中看到。

下面是atlassina-插件XML的東西:

<customfield-type name="Summary field" i18n-name-key="cascading-summary-field.name" key="cascading-summary-field" class="com.company.plugins.jira.customfields.CascadingSummaryCustomField"> 
<description key="cascading-summary-field.description">The cascading summary field to allow multiple summary fields using five text box and description javascript to write related text to appear in summary field.</description> 

查看下面的模板:(帶雖然無法指定出現此問題的看法屏幕上硬編碼值)。

<span>$<input type="text" name="${customField.id}:input1" id="${customField.id}:input1" value="#if($input1)$input1#end" style="border: 0px;width:59px;margin-left:1px;"/></span> 
<span>$</text><input type="text" name="${customField.id}:input2" id="${customField.id}:input2" value="3" style="border: 0px;width:59px;margin-left:1px;"/></span> 
<span>$</text><input type="text" name="3" id="${customField.id}:input3" value="0" style="border: 0px;width:59px;margin-left:1px;"/></span> 

//also, tried by just keeping <span>some value</span> 

如何解決?

回答

0

如發現,在顯示屏上出現的字段必須有「編輯」模板。

所以,它通過創建一個編輯模板來解決。

其他明智的是,必須通過在CUSTOM FIELD'S描述字段下通過jquery準備動態對象來實現。 (首先發現,通過螢火蟲追加相關位置,並在「自定義字段>>描述」中追加創建對象。

謝謝

相關問題