Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8410693
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T00:14:41+00:00 2026-06-10T00:14:41+00:00

Does anyone have a working example of chain-dependend properties in a ViewModel? The code

  • 0

Does anyone have a working example of chain-dependend properties in a ViewModel?
The code example will explain what I’m talking about:

<script type="text/javascript">
    var ViewModel = function () {
        this.SelectedPubCode = ko.observable('@Model.PubCode');
        this.SelectedVersionName = ko.observable('@Model.VersionName');
        this.PubCodes = ko.observable(@Model.PubCodes.ToJavascriptArray());
        this.VersionNames = ko.observable(@Model.VersionNames.ToJavascriptArray());

        this.LoadVersionNames = function(pubCode) {
            var self = this;
            $.ajax({
                type: "POST",
                url: '@Url.Action("LoadVersionNames")',
                data: "pubCode=" + pubCode,
                success: function(data) {
                    self.VersionNames(data);
                    // Trigger chain call (will call SelectedVersionName subscribtion).
                    self.SelectedVersionName('');
                }
            }); 
        };

        this.SelectedPubCode.subscribe(function(newPubCode) {
            // Accessing public variable to call model's method
            model.LoadVersionNames(newPubCode);
        });

        this.SelectedVersionName.subscribe(function(newValue) {
            // Another model's method can be called here.
            alert("Version Name has been changed to '" + newValue + "'");
        });
    };
    // Creating public variable to access it from inside of subscribtion action
    var model = new ViewModel();
    ko.applyBindings(model);
</script>

Please look at the this.SelectedPubCode.subscribe(function(newPubCode) call. I have to use global variable to make this working.
Is there any other way to achieve the behaviour I want?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T00:14:43+00:00Added an answer on June 10, 2026 at 12:14 am

    Knockout team is recommended to use self variable in view model to store this pointer. In this case you can use self to call LoadVersionNames function instead of using global variable.

    Your code should look as follow:

    <script type="text/javascript">
        var ViewModel = function () {
            var self = this;
            self.SelectedPubCode = ko.observable('@Model.PubCode');
            self.SelectedVersionName = ko.observable('@Model.VersionName');
            self.PubCodes = ko.observable(@Model.PubCodes.ToJavascriptArray());
            self.VersionNames = ko.observable(@Model.VersionNames.ToJavascriptArray());
    
            self.LoadVersionNames = function(pubCode) {
                $.ajax({
                    type: "POST",
                    url: '@Url.Action("LoadVersionNames")',
                    data: "pubCode=" + pubCode,
                    success: function(data) {
                        self.VersionNames(data);
                        // Trigger chain call (will call SelectedVersionName subscribtion).
                        self.SelectedVersionName('');
                    }
                }); 
            };
    
            self.SelectedPubCode.subscribe(function(newPubCode) {
                // Accessing public variable to call model's method
                self.LoadVersionNames(newPubCode);
            });
    
            self.SelectedVersionName.subscribe(function(newValue) {
                // Another model's method can be called here.
                alert("Version Name has been changed to '" + newValue + "'");
            });
        };
        // Creating public variable to access it from inside of subscribtion action
        var model = new ViewModel();
        ko.applyBindings(model);
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone have a working example of a video player built using Qt phonon?
Does anyone have a working example of OAuth authentication for twitter with Android? I
Does anyone have any useful advice/links to information about working with mp3 files in
Does anyone have a working example of a Wordpress menu outputted manually? The one
ref: Dynamic Control ID Does anyone have a working example of creating the ID
Does anyone have Javascript code for generating all variations with repetition? Example of variations
Does anyone have a working example of using the new GWT constructs for RequestFactory
Does anyone have a working example where protobuf-net can be used as a drop-in
does anyone have a generic working example of the use of the ExpertR9.dll library
Does anyone have a working example of importing a local file as a module

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.