Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1170
disable igcombo based on ko observable
posted

Hi ,

I want to enable and disable ig combo based on ko observable (this.disableContainerType =  ko.observable(false)) and I have binding like this 

igCombo: {width: '100%', height: '25px', caseSensitive: false, compactData: false,
dataSource: containerType, disabled: disableContainerType() , placeHolder: ' ', highlightMatchesMode: 'multi', selectedItems: selectedContainerType, textKey: 'Type', valueKey: 'Type', mode: 'dropdown'}

But this is not working , any idea what's wrong I'm doing here ?