bootstrap-editable-rails
bootstrap-editable-rails copied to clipboard
In-place editing with Twitter Bootstrap for Rails
Like this ``` $("#how").click(function(e) { e.stopPropagation() e.preventDefault() $("#com").editable({ 'toggle', validate: function(value) { if($.trim(value) == '') { return 'The content can not be blank!'; } } }) }) ``` I want...
This is related to https://github.com/vitalets/x-editable/issues/219 There is no 'error:' callback in x-ediable until version 1.4.4 ! The best you can do is add ``` javascript $('a.editable-click').editable({ ajaxOptions: { error: function...
All 200 response (including `render :nothing`) are rendered as errors. Here's a vanilla app that shows this behavior: https://github.com/gavinhughes/editable.
I'm trying to use a table created with an index do. So the same column gets repeated in each row. The first row is editable, the rest aren't. Is there...