Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

5 months? #112

Open
jay8t6 opened this issue May 26, 2016 · 9 comments
Open

5 months? #112

jay8t6 opened this issue May 26, 2016 · 9 comments

Comments

@jay8t6
Copy link

jay8t6 commented May 26, 2016

Hello there,

First of all, great work on the datatable. Its been 5 months since your last commit. I was wondering if you have you stopped supporting this element. It would be great if you could keep supporting this. I am pretty sure the others feel the same.

@amanuel2
Copy link

amanuel2 commented Jun 6, 2016

Agree with @jay8t6 . Also, if they could show us a demo, using this element with firebase (Notably a $firebaseArray())!

@RoXuS
Copy link

RoXuS commented Jun 24, 2016

hello @jay8t6, I had a discussion with the author a few months ago on slack, he had promised to take a look at PR but obviously this is not the case.

We created our own component from scratch to cover the same needs, it still lacks some stuff but it's functional.

See https://github.com/RoXuS/paper-datatable-api and the demo page https://roxus.github.io/paper-datatable-api/components/paper-datatable-api/.

It would be a pleasure to have your feedback.

@amanuel2
Copy link

@RoXuS it would be the best thing in the world, if you could show us how to integrate Firebase with that table API You got. like a $firebaseArray

@RoXuS
Copy link

RoXuS commented Jun 25, 2016

@amanuel2 I did a fast example with firebase.

You can see the demo here: https://roxus.github.io/paper-datatable-api/components/paper-datatable-api/
And the code: https://github.com/RoXuS/paper-datatable-api/blob/master/demo/firebase-demo.html

If you want use the pagination you have to use the firebase-query element with startAt and endAt attributes.

@amanuel2
Copy link

amanuel2 commented Jun 25, 2016

@RoXuS i wanted to note that, many people still use(including me) Firebase 2.4.2 , because there has been too many unnececary changes to the Firebase 3.0 SDK. So if you can include a older version, that would be even great! 😄

@sebs
Copy link

sebs commented Jul 1, 2016

uh paper-datatable not usable with 1.6.0 polymer?

@zvikarp
Copy link

zvikarp commented Jul 16, 2016

@amanuel2
Here is a code to add firebase list to David Mulder's datatable:

Just add it to your js

ready: function() {

this.data = []

var userId = firebase.auth().currentUser.uid;

firebase.database().ref('/user/' + userId + '/data').on('child_added', function(snapshot){

var item = snapshot.val();

item.name = snapshot.val().name;

item.time = snapshot.val().time;

his.push('data', item);

}.bind(this));

}

@dhrytsenko
Copy link

Hi @sebs! If you want to use paper-datatable with some new features you must to check our element from repo. Please, read desription to learn more about it. It's work very good with latest polymer 1.8.0.

@sebs
Copy link

sebs commented Mar 3, 2017

<3

erikwj pushed a commit to lunatech-labs/lunatech-competence-center-online that referenced this issue May 18, 2017
* Fix bug in overview

Technical and Fun skills were not shown in the overview as isTech and
isFun were not defined.

* Add slider and improve radio buttons layout

This adds a radio button for skill category (closes #31), and improves
radio buttons layout (closes #16).

* Fix dependency issues for paper-datatable

paper-datatable is not well
maintained (David-Mulder/paper-datatable#112)

For now we regress to earlier versions of our packages.

* Add pdf generation

This introduces the fundamentals for generating a pdf (Re: #23).

Pressing on the pdf icon and then on the done icon shall generate the
pdf of the current content. Editing the content changes the pdf as well.
erikwj pushed a commit to lunatech-labs/lunatech-competence-center-online that referenced this issue May 19, 2017
* Fix bug in overview

Technical and Fun skills were not shown in the overview as isTech and
isFun were not defined.

* Add slider and improve radio buttons layout

This adds a radio button for skill category (closes #31), and improves
radio buttons layout (closes #16).

* Fix dependency issues for paper-datatable

paper-datatable is not well
maintained (David-Mulder/paper-datatable#112)

For now we regress to earlier versions of our packages.

* Add pdf generation

This introduces the fundamentals for generating a pdf (Re: #23).

Pressing on the pdf icon and then on the done icon shall generate the
pdf of the current content. Editing the content changes the pdf as well.

* Fix dependencies issue again

The previous fix worked yesterday, but rebuilding the application made
the radio buttons unusable again. This change made the radio buttons
usable.

I am not sure this is fixed once for all though.

* Add swagger.yml documentation
erikwj pushed a commit to lunatech-labs/lunatech-competence-center-online that referenced this issue Jun 9, 2017
* Fix bug in overview

Technical and Fun skills were not shown in the overview as isTech and
isFun were not defined.

* Add slider and improve radio buttons layout

This adds a radio button for skill category (closes #31), and improves
radio buttons layout (closes #16).

* Fix dependency issues for paper-datatable

paper-datatable is not well
maintained (David-Mulder/paper-datatable#112)

For now we regress to earlier versions of our packages.

* Add pdf generation

This introduces the fundamentals for generating a pdf (Re: #23).

Pressing on the pdf icon and then on the done icon shall generate the
pdf of the current content. Editing the content changes the pdf as well.

* Fix dependencies issue again

The previous fix worked yesterday, but rebuilding the application made
the radio buttons unusable again. This change made the radio buttons
usable.

I am not sure this is fixed once for all though.

* Add swagger.yml documentation

* Move save button to cv-editor component

Re #10

* Fix typo

Re #19

* Make the routing work through cvs/username

This mostly completes #10. This commit has an issue with data binding:
to load data one has to pass through the cv list.

* Fix routing, fix minor bugs

This commit closes #10
Now everything works as a subroute of the cvs page.
The commit also solves minor issues with images.

* Fix photo input

Re #10

As we are using urls for images, make sense to use an input for now.

* Remove unused file

* Remove loading template

* Use the email as id in the address bar

With this commit the address bar will show
/cvs/[email protected]. However, it is not possible
anymore to reload the page, as of Polymer's Poyserve issue 147.

* Use dashed urls

For the Polymer Polyserve issue we need to use dashed url: so for
/cvs/[email protected] we will use
/cvs/andrea-giugliano@lunatech-com.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants