javascript - Make the full width of input field inside an xeditable using angularJS -
how enable 100% width of each cell when in edit status xeditable plugin?
i tried put these style
<style> div[ng-controller] { margin: 10px; } .table {width: 100% } form[editable-form] > div {margin: 10px 0;} .editable-wrap { width: 100%; } </style>
and option in angular app, couldn't work well.
app.run(function(editableoptions) { editableoptions.theme = 'bs3'; });
here's demo page http://106.185.55.97:3001/ngadmin/admin.html#/admin/banks/index
Comments
Post a Comment