Giter VIP home page Giter VIP logo

Comments (6)

ratiw avatar ratiw commented on August 14, 2024 2

You can find the link to the code @LimitTech has implemented in the above Add groupBy feature. However, please read through the comment to see its limitation as well.

from vuetable-2.

LimitTech avatar LimitTech commented on August 14, 2024

I don't know how to do a pull request but there are the changes I've done in your package in order to add groupBy feature (Excuse me because I'm not a vue expert and used something from https://codepen.io/andrewcourtice/pen/VabXQV/):

Note that I need the group by feature, so I haven't added conditionals.

  1. Make a computed variable

    filteredTableData: function () {
        var key = 'KEY'; // it could be a prop but I put here to show
    
        var groups = {
            data: this.tableData
        };
    
        if (this.tableData) {
            groups = {};
            for (var i = 0; i < this.tableData.length; i++) {
                var row = this.tableData[i];
                var cell = this.getObjectValue(row, key);
                if (!groups.hasOwnProperty(cell)) {
                    groups[cell] = [];
                }
                groups[cell].push(row);
            }
        }
    
        return groups;
    }
    
  2. Change template

     ....
    <tbody v-cloak>
    <template v-for="(groupitem, groupindex) in filteredTableData">
        <tr class='...'>
            <td :colspan="fields.length">{{ groupindex }}</td>
        </tr>
        <tr v-for="(item, index) in groupitem" @click="onRowClicked(item, $event)" :render="onRowChanged(item)"
    

from vuetable-2.

ratiw avatar ratiw commented on August 14, 2024

@LimitTech You should first fork vuetable-2 into your own repo first. Then, use your forked repo in your code and make any change as you see fit. Make it work in your use case, then from your repo will see "New pull request" button showing up. From there, you can send the pull request to me.

from vuetable-2.

LimitTech avatar LimitTech commented on August 14, 2024

Ok, sorry for changing spaces. I think it was done by PHPStorm automatically.

from vuetable-2.

tksumanth1994 avatar tksumanth1994 commented on August 14, 2024

@LimitTech did you happen to find any workaround for this? I'm stuck at the same place. Need group by feature in vuetable-2.

from vuetable-2.

Hintzmann avatar Hintzmann commented on August 14, 2024

@LimitTech I am also interested in a "group by" feature in vuetable-2.

from vuetable-2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.