0

チェーンされた選択コンポーネントの更新に問題があります。キーを設定したものは機能しているようですが、大きな醜いエラーメッセージが表示されます。

Component.tml (関連セクション)

<tr>
    <td>
        <h3>Powers:</h3>
    </td>
    <td>
        <t:select t:id="powersSelect" t:model="powersModel"
            t:value="powersItem" t:encoder="itemEncoder"
             t:validate="required" t:blankOption="ALWAYS" t:blankLabel="Choose..." zone="groundsZone" />
    </td>
</tr>
<tr>
    <td>
        <h3>Grounds:</h3>
    </td>
    <td>
        <t:zone t:id="groundsZone" id="groundsZone" visible="false">
            <t:select  t:model="groundsModel"
                t:value="groundsItem" t:encoder="itemEncoder"
                t:validate="required" t:blankOption="ALWAYS" t:blankLabel="Choose..."/>
        </t:zone>
    </td>
</tr>

Component.java (関連セクション)

     @InjectComponent
    private Zone groundsZone;

    @Inject
    private SelectModelFactory selectModelFactory;

    @Property
    private SelectModel powersModel, groundsModel;

    @Property
    StandingDataItem powersStandingDataItem, groundsStandingDataItem;

@SetupRender
void setupRender() {
    powersList = service.getList()
    powersModel = selectModelFactory.create(powersList, "displayText");

   //included as I was getting a null pointer without instantiating 
    groundsList = new ArrayList<StandingDataItem>();
    groundsModel = selectModelFactory.create(new ArrayList<StandingDataItem>(), "displayText");
}

@OnEvent(value = EventConstants.VALUE_CHANGED, component = "powersSelect")
    Object updateGrounds(StandingDataItem sdi) {
        powersStandingDataItem=sdi;
        groundsList = service.getList()
        groundsModel = selectModelFactory.create(groundsList, "displayText");
        return groundsZone.getBody();
    }

ただし、次のエラーが発生し続け、解決できませんでした。サービス メソッドの呼び出しが完了し、予想されるリストが返され、両方の Select コンポーネントに予想される情報が含まれますが、画面の半分に大きな赤い醜いエラー メッセージが表示されます...

TypeError: Cannot call method 'getFormEventManager' of null 
at klass.Tapestry.FieldEventManager.Class.create.initialize (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/tapestry.js:1588:38) 
at new klass (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/scriptaculous_1_9_0/prototype.js:101:23) 
at Element.addMethods.getFieldEventManager (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/tapestry.js:841:23) 
at HTMLSelectElement._methodized [as getFieldEventManager] (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/scriptaculous_1_9_0/prototype.js:438:23) 
at http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/tapestry.js:1145:26 
at http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/scriptaculous_1_9_0/prototype.js:825:18 
at klass._each (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/scriptaculous_1_9_0/prototype.js:1237:7) 
at klass.each (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/scriptaculous_1_9_0/prototype.js:824:12) 
at T5.extendInitializers.validate (http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/tapestry.js:1135:14) 
at http://localhost:8080/nottsStops/assets/1.0.0-SNAPSHOT/tapestry/tapestry.js:268:23
Ajax failure: Status 200 for /nottsStops/stopsentrybuild.powerscomponent.powersselect:change: TypeError: Cannot call method 'getFormEventManager' of null
Communication with the server failed: TypeError: Cannot call method 'getFormEventManager' of null

タペストリー5.3.7を使用しています。このコンポーネントは、多くのサブ コンポーネントで構成されるフォームの一部です。他のサブ コンポーネントにはこの問題はありません (チェーン選択を使用するのはこれだけであるためと思われます)。私が間違っていること/なぜこのエラーが発生するのかについて、誰かが光を当てることができますか?

4

1 に答える 1