Angular(v15) | Sorting | Search | Pagination | On Material Card Items[Full Video]

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 พ.ย. 2024

ความคิดเห็น • 2

  • @ramkumark1805
    @ramkumark1805 4 หลายเดือนก่อน

    Just awesome bro. Clear Explanation. I applied your logic to my project and it works correctly!!! Once again tqsm.. Awesome teaching bro....

  • @ProgrAmadaMente
    @ProgrAmadaMente ปีที่แล้ว +1

    Hi Naveen, first of all, thank you so much for creating this video. My first suggestion in your code is this:
    getSorting(value: string) {
    if (!value) {
    return {
    sort: value.split('-')[0],
    orderBy: value.split('-')[2]
    }
    }
    return {
    sort: '', orderBy: ''
    }
    }
    Make sense?