Giter VIP home page Giter VIP logo

Comments (6)

funston avatar funston commented on July 24, 2024 1

@jonlachlan any chance to get the html snippet added here to your workaround? it's cut off above.
thanks.

from reactive-table.

zimme avatar zimme commented on July 24, 2024

One option is to use the fn part of fields settings and wrap data inside a elements with id's, and use xeditable to make inline/popup editing possible

from reactive-table.

jonlachlan avatar jonlachlan commented on July 24, 2024

I have done this, I added the following meteor packages:
meteor add natestrauser:x-editable-bootstrap
meteor add workman:x-editable-reactive-template
The first is the x-editable library. The second is a wrapper to make it work as a template. Then add to html:
<template name="authorCell>
{{> xEditable type="text" success=onSuccess placement="right" placeholder="Enter value..." value=this.author data-emptytext="Click to add..."}}

Then add this to JS:
Template.cellEditable.helpers({
onSuccess: function () {
var id = this._id;
return function (res, val) {
Books.update({ _id: id }, { $set: { author: val } });
}
}
});

from reactive-table.

cramrov avatar cramrov commented on July 24, 2024

Is there any solution for Semantic UI?

from reactive-table.

wizonesolutions avatar wizonesolutions commented on July 24, 2024

@jonlachlan you said "then add to html:" but your message cut off. formatting?

from reactive-table.

MJO9 avatar MJO9 commented on July 24, 2024

@jonlachlan please provide us with the details on how did you manage to make editable-reactive-template work with reactive-table. I've been stuck at this for days so please help

from reactive-table.

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.