markcell / jquery-tabledit

Inline editor for HTML tables compatible with Bootstrap.
http://markcell.github.io/jquery-tabledit/
MIT License
435 stars 208 forks source link

Use with hide tables jquery #140

Open RykieL opened 4 years ago

RykieL commented 4 years ago

Hi I hope you can help me. I have a jquery that hides div on a condition if(search === ''){ $("#wrap").css('visibility', 'hidden'); }else{ $("#wrap").css('visibility', 'visible'); }
}); This works fine, but my tabledit icons disappear (when visible) and I cannot see the icons for edit / add.

If I remove the jquery on the above div, I get the icons back. The tableedit div's are inside the wrap div. I used Example #1 in tableedit.

Any suggestions. Thanks

RykieL commented 4 years ago

On further investigation: I use function tally for totals:

If I omit the , I do not get the totals, but the icons for edit appears. My tables are hidden on open with visibility code above.

Thanks