Semantic-ui: [UI] In-Place Content Editor

Created on 5 Nov 2013  Â·  8Comments  Â·  Source: Semantic-Org/Semantic-UI

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

UI Component stale

Most helpful comment

All 8 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

playgithub picture playgithub  Â·  3Comments

guilhermeblanco picture guilhermeblanco  Â·  3Comments

ghost picture ghost  Â·  3Comments

vinhtq picture vinhtq  Â·  3Comments

miguelmota picture miguelmota  Â·  3Comments