charlespockert / aurelia-bs-grid

Aurelia and Bootstrap powered datagrid control

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Binding issue

pranayvermado opened this issue · comments

I am able to print the data in my UI but there is no styling of grid.

<template>
    <grid repeat.for="row of names">
        <grid-row>
            <grid-col heading="ID" field="id" class="col-md-6">${ row }</grid-col>
            <grid-col heading="Name" field="name" class="col-md-6">${$index}</grid-col>
        </grid-row>
    </grid>
</template>

Hi, @pranayvermado so did you resolve the first issue?

Can you show me a screenshot of the second issue?

Styles are loaded via Bootstrap, you must have bootstrap installed and you have to include the .css file in your application somewhere.

I decided not to add Bootstrap as a dependency since most of the grid is actually free of any class markup so you can use your own custom CSS or possibly other CSS frameworks that style tables

Hi charlespockert ,

(https://cloud.githubusercontent.com/assets/5179806/10810861/5eaf0002-7e2b-11e5-9fc8-4e0b98d1acf0.PNG)

Please check this out, I am having bootstrap in my project you can see the nav bar its from boot strap.
I like this grid and it seems very useful for me.

Also one thing I want to tell you that I downloaded your project and do following steps
1.npm install
2.jspm install -y
3. jspm install jspm install github:charlespockert/aurelia-bs-grid
4. gulp watch

Now the application is not loaded it throws error for systemjs, system.js is not found