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'; }); 

inline

inline

here's demo page http://106.185.55.97:3001/ngadmin/admin.html#/admin/banks/index

you can use simple css apply 100% width input

.editable-controls input {     width: 100% } 

demo


Comments

Popular posts from this blog

Ansible - ERROR! the field 'hosts' is required but was not set -

customize file_field button ruby on rails -

SoapUI on windows 10 - high DPI/4K scaling issue -