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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:59:18+00:00 2026-06-06T15:59:18+00:00

my code is this: <div id=DivToUpdate> <div> SELECTED ROOM: <input type=text id=currentRoom /></div> <div

  • 0

my code is this:

<div id="DivToUpdate">
    <div>
        SELECTED ROOM:
        <input type="text" id="currentRoom" /></div>
    <div id="messagesList">
        <table>
            <tbody data-bind="foreach: model.Messages">
                <tr data-bind="text: Message">
                </tr>
            </tbody>
        </table>
    </div>
</div>

<script type="text/javascript">
var viewModel = {};
$('#DivToUpdate').click(function () {
    $.getJSON("/ControllerAction/JsonPopulateMessages", { jsonRoom: $('#currentRoom').val() }, function (data) {
        var trueData = JSON.stringify(data);
        alert(trueData);
        viewModel.model = ko.mapping.fromJSON(trueData);
        ko.applyBindings(viewModel);
    });
});
  </script>

my returned JSON data is in the format like this:

 {"Messages":[{"Message":["yow!"]},{"Message":["hey!"]}]}

when i try to run the code and click DivToUpdate, i see nothing… table and the rows are empty.. meaning the viewmodel is not binded correctly.. and when i looked at the console of chrome, it says:

 NO_MODIFICATION_ALLOWED_ERR: DOM Exception 7

i am starting to learn knockout and i would really appreciate if you could tell me how to fix this…

  • 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-06T15:59:20+00:00Added an answer on June 6, 2026 at 3:59 pm

    Your JSON looks a bit odd, remove the [] around the value of Message. I guess it should be a string right? How are you generating your JSON?

    update:

    When I look at it again, I realize that you try to bind the text to the tr-element, but a tr can only contain td-elements, so you need to add a td within your tr and bind the data to the td-element instead.

    Try this instead:

        <div id="messagesList">
            <table>
                <tbody data-bind="foreach: model.Messages">
                    <tr>
                       <td data-bind="text: Message"></td>
                    </tr>
                </tbody>
            </table>
        </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an index.php with this code <div id=example class=functions></div> <script type=text/javascript> var ajax_load
I use this code to refresh a div with the id=my : <script type=text/javascript>
I have this div in my code: <div id=advice class=validation-advice style=>some text here</div> Now,
I have CSS code like this div ul li input{ width:70%} What to do
I have a table and I use this code to add a <div class=out></div>
I have this code... <style type=text/css> #container { width: 200px; height: 200px; background-color: #567;
Can anyone understand why this simple code doesn't work: <script src=/jQuery/jquery-1.7.2.min.js type=text/javascript></script> <script type=text/javascript>
I have this code: $(div[id^='intCell']).mouseover(function() { $(this).css({ border:,1px solid #ff097c}); }).mouseout(function() { $(this).css({border:,1px solid
Here is some code: var class = function(elem,div){ this.elem= elem; this.div = div; this.init
This code attempts to dynamically switch the class of the StateContainer div from StateOne

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.