Hi Isomorphic,
Just want to confirm the best way to add a progress bar (Progressbar) to a ListGrid is still by setting both of the following,
and implementing the methods to create/update the Progressbar component.
Also, can you confirm that if the Progressbar field is hidden, there will be no extra performance cost even though setShowRecordComponents and setShowRecordComponentsByCell are enabled on the ListGrid? I want to make sure that we only incur an additional performance cost if the user chooses to add that field to the Visible Fields.
Thank you
Just want to confirm the best way to add a progress bar (Progressbar) to a ListGrid is still by setting both of the following,
Code:
setShowRecordComponents(true); setShowRecordComponentsByCell(true);
Code:
createRecordComponent updateRecordComponent
Thank you
Comment