Vuetable-2: Resizable columns

Created on 15 Jun 2018  路  2Comments  路  Source: ratiw/vuetable-2

I'm considering using this component. But first I wanted to understand if in the future you're going to add the ability to resize columns by drag and drop.
Thanks

Most helpful comment

you can use colresizable :

npm install colresizable --save

<template>
    <vuetable 
        ref="vuetable"
        @vuetable:loaded="onLoaded"></vuetable>
</template>

<script>
import 'colresizable/colResizable-1.6.min';
export default {
    methods: {
        onLoaded() {
            $('[ref="vuetable"]').colResizable({
                liveDrag: true
            });
        },
    }
}
</script>

works fine with bootstrap tables

All 2 comments

@bicienzu That's beyond my need and my ability. So, unless someone will work on it, it's not going to happen, sorry.

you can use colresizable :

npm install colresizable --save

<template>
    <vuetable 
        ref="vuetable"
        @vuetable:loaded="onLoaded"></vuetable>
</template>

<script>
import 'colresizable/colResizable-1.6.min';
export default {
    methods: {
        onLoaded() {
            $('[ref="vuetable"]').colResizable({
                liveDrag: true
            });
        },
    }
}
</script>

works fine with bootstrap tables

Was this page helpful?
0 / 5 - 0 ratings

Related issues

coderabsolute picture coderabsolute  路  4Comments

mannyyang picture mannyyang  路  3Comments

PrimozRome picture PrimozRome  路  5Comments

arthurvasconcelos picture arthurvasconcelos  路  3Comments

ericksongmr picture ericksongmr  路  5Comments