123456789101112131415161718192021222324252627282930313233 |
- (function() {
- BemsWebApplication.CmMenuViewModel = function(data) {
- this.SiteId = ko.observable();
- this.MenuId = ko.observable();
- this.Used = ko.observable();
- this.MenuPath = ko.observable();
- this.Name = ko.observable();
- if(data)
- this.fromJS(data);
- };
- $.extend(BemsWebApplication.CmMenuViewModel.prototype, {
- toJS: function() {
- return {
- SiteId: this.SiteId(),
- MenuId: this.MenuId(),
- Used: this.Used(),
- MenuPath: this.MenuPath(),
- Name: this.Name(),
- };
- },
- fromJS: function(data) {
- if(data) {
- this.SiteId(data.SiteId);
- this.MenuId(data.MenuId);
- this.Used(data.Used);
- this.MenuPath(data.MenuPath);
- this.Name(data.Name);
- }
- }
- });
- })();
|