2017-10-30 17 views

答えて

1

dependsOnオプションを使用してください。関係に

例..

type: { type: Types.Select, options: ['TypeOne','TypeTwo','TypeThree TypeFour' ], initial: true }, 

something: { type: Types.Text, dependsOn: { type: 'TypeThree' }, initial: true }, 

例 - あなたは、特定のフィールドがDEPENDSON基準が一致した場合にのみ現れることを示す論理に従うことができます。

Adjustment.add({ 
type: { type: Types.Select, options: ['Booking','Shipment','Warehouse','Inventory' ], initial: true }, 
sku: { type: Types.Text, initial: true }, 
quantity: { type: Types.Number, initial: true, width: 'short' }, 
keyID: { type: Types.Relationship, ref: 'Order', dependsOn: { type: 'Booking' }, initial: true }, 
bookingID: { type: Types.Relationship, ref: 'Booking', dependsOn: { type: 'Booking' }, initial: true }, 
warehouse: { type: Types.Relationship, ref: 'Warehouse', dependsOn: { type: 'Warehouse' }, initial: true }, 
shipmentID: { type: Types.Text, dependsOn: { type: 'Shipment' }, initial: true }, 

});

+0

しかし、私はタイプを使用して動的になるようにしようとしています:関係とモデルへの参照....これは私が直面しているトリックです –

+0

私はdependsOn関係で使用されています。 – tmvanetten

関連する問題