You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was testing the example of http://ng-table.com/#/ and I don't achieve that in the name colum appears the box for filtering. The box was positioning in the middle of the table.
The problem is that ng-table library sustitutes filter="{ name: 'text'}" for input type=text and in HTML5 it doesn't work input type=text. In HTML5 it works input type=search. Thus, I have downloaded the https://unpkg.com/[email protected]/bundles/ng-table.min.js and I have changed that:
Hello.
I was testing the example of http://ng-table.com/#/ and I don't achieve that in the name colum appears the box for filtering. The box was positioning in the middle of the table.
The problem is that ng-table library sustitutes
filter="{ name: 'text'}"
forinput type=text
and in HTML5 it doesn't workinput type=text
. In HTML5 it worksinput type=search
. Thus, I have downloaded the https://unpkg.com/[email protected]/bundles/ng-table.min.js and I have changed that:<input type=text name={{name}} ng-disabled=$filterRow.disabled ng-model=params.filter()[name] class="input-filter form-control" placeholder="{{getFilterPlaceholderValue(filter, name)}}"/>
for this:
<input type=search name={{name}} ng-disabled=$filterRow.disabled ng-model=params.filter()[name] class="input-filter form-control" placeholder="{{getFilterPlaceholderValue(filter, name)}}"/>
I hope that my contribution will be useful for someone.
Bye.
The text was updated successfully, but these errors were encountered: