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

  • SEARCH
  • Home
  • 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 6731493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T10:32:09+00:00 2026-05-26T10:32:09+00:00

Firefox populates a form with my username/password. This is using knockout.js to bind the

  • 0

Firefox populates a form with my username/password. This is using knockout.js to bind the input but it won’t update the values on this kind of populating. Am I missing something say on a page load? When it populates and the user hits submits, the values are blank.

(function (app, $, undefined) {

    app.viewModel = app.viewModel || {};
    app.login = {};

    app.viewModel.login = {
        userName: ko.observable(''),
        password: ko.observable(''),
        returnUrl: ''
    };

    app.viewModel.login.submit = function () {
        sso.login(app.viewModel.login.userName(), app.viewModel.login.password(), app.viewModel.login.returnUrl);
    };

    app.login.init = function (returnUrl) {

        app.viewModel.login.returnUrl = returnUrl;

        ko.applyBindings(app.viewModel);
    };

})(window.app = window.app || {}, jQuery);
  • 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-05-26T10:32:09+00:00Added an answer on May 26, 2026 at 10:32 am

    The way that I have dealt with this in the past is to use a wrapper to the value binding that initializes the value from the element’s current value.

    It would look like (this one is simplified to only work with observables):

    ko.bindingHandlers.valueWithInit = {
        init: function(element, valueAccessor, allBindingsAccessor, context) {
            var observable = valueAccessor();
            var value = element.value;
    
            observable(value);   
    
            ko.bindingHandlers.value.init(element, valueAccessor, allBindingsAccessor, context);
        },
        update: ko.bindingHandlers.value.update
    };
    

    So, you would use valueWithInit instead of value. You just need to make sure that ko.applyBindings is not called before the autocomplete has been able to do its job.

    http://jsfiddle.net/rniemeyer/TeFAX/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The code below works well in Safari but in Chrome and Firefox the form
Firefox 3.5 does not allow creating java OBJECT tag with Javascript (document.write)? this technique
Firefox requires xhtml extension for mathml but IE will not display pages with xhtml
Firefox 3 now stores bookmarks in a Sqlite file called profiles.sqlite. This file is
Firefox recently blacklisted the plugin that allows xbaps to work in firefox This is
Firefox has this nice find-a-text-on-the-page dialog, which is non-modal and shows up at the
Firefox doesn't know how to open this address because the protocol (c) isn't associated
i am using firefox 3.63 with asp.net mvc2 in vs 2010.the thing is that
I am developing my first addon for Firefox, and I'm using the Extention Developer
I have a page with a form. There is an input control I populate

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.