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>
如何解決?