-
Notifications
You must be signed in to change notification settings - Fork 29
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
Please upgrade to comply Meteor v0.8.3 #50
Comments
@menway thanks for taking the time to help convert to v0.8.3 However I am waiting on the MDG team finalizing their component structure and animation hooks prior to porting jquery-datatables, due to the the fact that I know it will be a breaking change, and I want to limit the number of times I refactor the existing apis. Have you experienced any other issues while using this package? |
Am I to understand that meteor-jquery-datatables does not yet support meteor v0.8.3? If so, which version of meteor should I be using? |
To answer my own question, I found can only run meteor-jquery-datatables on meteor v.0.8.2. |
With menways patch code it "works" on v0.8.3, only had issues when I didn't use a subscription as dataset |
even by applying @menway 's patch, i'm getting : // as a template helper
collectionDT: function () {
return {
id: "collection-data-table",
columns: [{
title: "Title",
data: "title"
},{
title: "Description",
data: "description"
}],
subscription: "all_docs"
}
}
// server side
var dataTable = new DataTableComponent({
subscription: "all_docs",
collection: SomeCollection,
})
dataTable.publish() |
Hi guys, |
Hey guys show some love for 0.9 version :D |
Hi all, On a slightly related note, are there others like @dohomi who feel that CoffeeScript is generally a turn-off for contributing to or troubleshooting this project? |
I feel like you about coffee guys |
-1 for coffeescript |
-1 for coffeescript as the only documented option; both javascript and coffeescript examples would be ideal, but if only one, please use javascript; jquery-datatables is hard enough to configure without having to learn a new language to do it. |
everybody who likes to use datatables try out https://github.com/ephemer/meteor-reactive-datatables it works quite neat on current meteor version. |
@dohomi +1 for ephemer:reactive-datatables |
Hey @austinrivas - Meteor 1.0 was released today! |
@menway: you developed meteor-jquery-datatables. Are you recommending ephemer's package instead? |
Hi Austin, thanks for your hard work on jquery-datatables package. It's very awesome :-) Since Meteor version 0.8.3 has just released, could you please help upgrade jquery-datatables for the new version? Thank you.
Following is my current temporary workaround F.Y.I. For maintantance considerations, I wrote these codes in an additional file, rather than modifying the existing codes in the package.
The text was updated successfully, but these errors were encountered: