Any chance we can get an in-place editable grid in Semantic UI?
http://vitalets.github.io/x-editable/
http://www.smartclient.com/smartgwt/showcase/#grid_editing_cell
It looks fairly straight forward, so I don't see why not. I can think of a million sites that use it, or would use it.
Something like,
<table class="ui editable table">
<tr>
<td>Name</td>
<td class="editable text">
<div class="ui visible">John Smith</div>
<div class="ui hidden">
<input type="text" class="field" name="name" />
</div>
</td>
</tr>
</table>
$('.ui.editable').editable({
onChange: function(which, newValue, oldValue) {
if (which === "name") {
alert(oldValue + " changed his name to " + newValue);
}
}
});
Thanks Frankie,
Also note the close relative: http://lightswitch05.github.io/filterable/
On Mon, Nov 4, 2013 at 10:32 PM, Frankie Bagnardi
[email protected]:
It looks fairly straight forward, so I don't see why not. I can think of a
million sites that use it, or would use it.—
Reply to this email directly or view it on GitHubhttps://github.com/jlukic/Semantic-UI/issues/324#issuecomment-27750450
.
/ Hristo Stoyanov
Is there any solution like the one hrstoyanov posted above?
:+1: Really starting to need this, any existing solutions? May have to use an alternative table for now, which would be a shame.
Any progress on this?
No immediate plans, use a different library for now.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions.
Most helpful comment
What about this: http://www.jqueryscript.net/table/Simple-jQuery-Editable-Table-Plugin-For-Semantic-UI.html