how implement pagination and searching on json in angularjs. I have seen multiple example on list to implement pagination like below
How to do paging in AngularJS?
Angularjs - Pagination appear after search filter
But i need to do on js object not on json array(or list). May be simlar to Pagination on JSON Data in Angular
sample data
{"a":"hsdhs","b":"hsdhs","c":"hsdhs","d":"hsdhs","e":"hsdhs","f":"hsdhs","g":"hsdhs"}
if iam there in page no 2 and page size is 3. then i need only
{"d":"hsdhs","e":"hsdhs","f":"hsdhs"}
Can some one help me findout this.
Thank you