0
我有一個MachineProcess實體,它有一個布爾屬性IsGroup,在AddandEditMachineProcess屏幕中,我想要標籤PartGroup根據值IsGroup改變可見性。我的代碼如下所示,這是行不通的。Lightswitch html一個屬性(布爾)改變了另一個屬性isVisible相應地改變
myapp.AddEditMachineProcess.Details_postRender = function (element, contentItem) {
// Write code here.
contentItem.details.addChangeListener("IsGroup", function (e) {
var isGroup = contentItem.value.MachineProcess.isGroup;
var partGroup = contentItem.findItem("PartGroups");
if(isGroup){partGroup.isVisible}});};
請幫助正確的代碼,謝謝!