kyeotic / durandal-grid

A data-bindable grid widget with paging for Durandal
MIT License
11 stars 6 forks source link

Bug in caption #7

Closed hientrung closed 10 years ago

hientrung commented 10 years ago

Some thing wrong when no set caption in config And code here fail self.caption = ko.observable(config.caption) ? config.caption : ko.observable(config.caption !== undefined ? config.caption : defaults.caption);

maybe it should be self.caption = ko.isObservable(config.caption) ? config.caption : ko.observable(config.caption !== undefined ? config.caption : defaults.caption);

Best regards!