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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:35:31+00:00 2026-06-17T18:35:31+00:00

Can someone show me how to create a table in knockout for an observableArray

  • 0

Can someone show me how to create a table in knockout for an observableArray for a viewModel like below:

I know you use a foreach binding and all that, but I need to create a new TR row every 5 array items. I need the table to only be so far across and have aligned checkbox items basically. I got it to work without tables just adding a bunch of checkboxes to a div (but the checkboxes weren’t all lined up), but I want a table to keep things lined up in cells nicely.

Here is an article I posted with some code I did, but I was attempting to put them all in one TR but that won’t work and here is another guy trying to do something similar but not using knockout…

I know how to do what I want using regular jquery and external template engine, but I am trying to keep away from jquery if there is a nice knockout binding template way of doing it all.

I might add some bootstrap classes to the table stuff to but not sure, I am using this framework for other parts of my website too. But more focus on the knockout stuff.

Article 1

Article 2

function someModel() {
    var self = this;
    self.items = ko.observableArray([]); 
}

array items are a class like this :

function item(name, id) {
    var self = this;
    self.Name = name;
    self.Id = id;
}
  • 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-17T18:35:32+00:00Added an answer on June 17, 2026 at 6:35 pm

    When you need more complex data structuring I recommend using a dependent observable to do it. I’m assuming you want a series of rows each with up to 5 tds.

    function someModel() {
        var self = this;
        self.items = ko.observableArray([]);
        self.items_grouped = ko.computed(function(){
            var grouped = [];
            var itemlist = self.items();
            for(var i = 0; i < itemlist.length; i+=5){
                var row = [];
                grouped.push(row);
                for(var j = 0; j < 5; ++j){
                    row.push(itemlist[i+j]);
                }
            }
            return grouped;
        });
    }
    
    <table>
        <tbody data-bind="foreach: items_grouped">
            <tr data-bind="foreach: $data">
                <td>
                    <span data-bind="text: Name"></span>
                    <span data-bind="text: Id"></span>
                </td>
            </tr>
        </tbody>
    </table>
    

    You can of course make the clustering implementation cleaner using whatever libraries you have on hand.
    On a side note, using tables for layouts is almost always a bad idea.

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

Sidebar

Related Questions

Can someone show me how to use the System.Numerics.BigInteger datatype? I tried using this
Can someone tell/show me how to use PHP inside PHP. I'm trying to make
Given the example below, can someone please show me how this could be called?
Can someone please tell me how to show all privileges/rules from a specific user
I'm hoping someone can modify my code below to show me exactly how to
Can someone show me how to print the ListView contents with the ColumnHeaders, without
can someone please show me documentation on this method? i have the following line:
Can someone please explain how Read/Show works.. I cannot find any tutorials on it.
Can someone follow what doing, and show me how to do it correctly? I'm
Can someone please tell me why this doesn't work? I'm trying to show and

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.