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 8392589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T19:33:08+00:00 2026-06-09T19:33:08+00:00

How to wait for data to load and then print html content? Here is

  • 0

How to wait for data to load and then print html content?

Here is HTML markup:

<div id="item-details-content">
    <input type="hidden" id="item-id" value="@id" data-bind=""/>
    <div class="item-list" data-bind="init: itemPage.loadcontent(@id), with: itemPage.item">
        <div class="item-container clearfix">
            <div class="item-content clearfix">
                <div class="title" data-bind="text: Title">

Here is JS markup:

var itemViewModel = {
    item: {},
    loadcontent: function (getID) {
        $.ajax({
            url: '/api/item/details/' + getID,
            dataType: 'json',
            success: function (data) {
                itemViewModel.item = data;
            }
        });
    }
};

var mainViewModel = {
    indexPage: indexViewModel,
    itemPage: itemViewModel
};

Observations

  1. When the variable is ko.observable() it eventually shows the data, problem is I don’t want it to update.
  • 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-09T19:33:10+00:00Added an answer on June 9, 2026 at 7:33 pm

    Something like this should work.

    <div id="item-details-content" data-bind="if: isLoaded">
    ....
    </div>
    
    
    and javascript:
    
    var itemViewModel = {
        item: {},
        loadcontent: function (getID) {
            $.ajax({
                url: '/api/item/details/' + getID,
                dataType: 'json',
                success: function (data) {
                    itemViewModel.item = data;
                    mainViewModel.isLoaded(true);
                }
            });
        }
    };
    
    var mainViewModel = {
        indexPage: indexViewModel,
        itemPage: itemViewModel,
        isLoaded: ko.observable(false)
    };
    

    another approach would be to use a hidden class on your #item-details-content div and just do $(‘#item-details-content’).show();

        <div id="item-details-content" class="hidden">
        ....
       </div>
    
    
    success: function (data) {
        itemViewModel.item = data;
        $('#item-details-content').show();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Will this code ever wait on the mutex inside the producer's void push(data) ?
I have a program that load data from a file using std::ifstream and store
I am pulling data from a database with Ajax and dynamically populating a div
I have a thread downloading data and I want to wait until the download
When writing a script that loads data, it's a waste of time to wait
my data is load from the internet, so I use the AsynTask(). execute() method
I try to open the 2nd activity which require some time to load data
I ask the user to input some data, after that I redirect him to
I'm working on a project that needs to automatically load content and insert it
I have some data I load into the database the first time a user

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.