How to build a Kanban view Using LWC without APEX | Real-Time Project in LWC

Поділитися
Вставка
  • Опубліковано 18 лис 2024

КОМЕНТАРІ • 21

  • @SaiPhaniRam
    @SaiPhaniRam 4 роки тому

    Your lectures are worth a ton ! Thank you so much bhayya

  • @miteshsharma902
    @miteshsharma902 4 роки тому

    This is kool will help great deal in building nice app keeping user experience simple...

  • @muruganmuru6508
    @muruganmuru6508 4 роки тому

    Really very nice

  • @vishalyadav86043
    @vishalyadav86043 Рік тому

    Hi, can you also make video on how to add search bar and filter in this kanban board.

  • @HumbleNishachar
    @HumbleNishachar 4 роки тому

    great nikhil

  • @shubhamjoshi1493
    @shubhamjoshi1493 3 роки тому

    If I have to do this for dynamic field of dynamic object how I can do this??

  • @aasthab7524
    @aasthab7524 2 роки тому

    Hi nikhil, can i also build this project in my dev org? or scratch org is necessary?

    • @salesforcetroop
      @salesforcetroop  2 роки тому

      dev org is fine

    • @sindhunethra3698
      @sindhunethra3698 2 роки тому

      @@salesforcetroop hii can i do it with custom object ? i have been doing this with custom object but temp1.records.records query did't work sir

  • @tushargarg3832
    @tushargarg3832 4 роки тому

    Thank you So much sir.....sir can you please share git hub link

  • @vclearnconfidentv6598
    @vclearnconfidentv6598 4 роки тому

    Very nice video on how to use LWC. I am not able to see the format of the object [info , records], it is displaying me as [object,object], is there any setting i need to enable.. any inputs to enable the [info, records] is appreciated. Also, when i print the temp1, it is erroring out. thanks in advance.

    • @salesforcetroop
      @salesforcetroop  4 роки тому

      use console.log(JSON.stringify(data))

    • @vclearnconfidentv6598
      @vclearnconfidentv6598 4 роки тому

      @@salesforcetroop - thanks for getting back, Yes i am aware of JSON Stringify .. you were using just the console.log in the video and you were able to see the details.. just wondering how that was possible ?

    • @salesforcetroop
      @salesforcetroop  4 роки тому +1

      I guess I have done some settings in my chrome. I am not sure right. I will chk and let you know.

    • @shubhamjagtap1388
      @shubhamjagtap1388 3 роки тому

      @@vclearnconfidentv6598 I guess you have used "+" operator instead of "," in console.log

  • @jayamadhavi8439
    @jayamadhavi8439 2 роки тому

    Can anyone help with this error?
    dragAndDrop.js:1 Uncaught (in promise) TypeError: LWC component's @wire target property or method threw an error during value provisioning. Original error:
    [Cannot read properties of null (reading 'fields')]

    • @pratikkakde6619
      @pratikkakde6619 Рік тому

      I am also facing same issue do you get how to resolve this

    • @rajatkumarvimal7119
      @rajatkumarvimal7119 5 місяців тому

      let returnMap = [];
      returnMap = Array.from(data.records.records).map(item => {
      let field = item.fields;
      let account = field.Account.value.fields;
      return {'Id': field.Id.value, 'Name': field.Name.value, 'AccountId': account.Id.value, 'AccountName': account.Name.value, 'CloseDate': field.CloseDate.value, 'StageName': field.StageName.value, 'Amount':field.Amount.value}
      });
      console.log('getListUi', JSON.stringify(returnMap));
      I used this code to resolve this error!