BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<input ej-dropdownlist e-dataSource="vm.dropDownOptions.dataSource" e-fields="vm.dropDownOptions.fields" e-value="vm.dropDownOptions.value" e-enablePopupResize="true" e-enableFilterSearch="true" e-filterType="contains" />
<input ej-dropdownlist="vm.dropDownOptions" />
vm.dropDownOptions = { enablePopupResize=true, enableFilterSearch=true, filterType="contains" bindingOptions: { fields: 'vm.myDropDownObj.fields', value: 'vm.myDropDownObj.value'
}
};
This is something DevExpress does similarly, which I find safer than duplicating my properties or splitting configuration across two files.