Skip to content

Instantly share code, notes, and snippets.

View renzo01's full-sized avatar
🏠
Working from home

Renzo Manuel Gómez Césare renzo01

🏠
Working from home
  • Globant
  • Perú
  • 04:21 (UTC -05:00)
View GitHub Profile
@renzo01
renzo01 / testUse
Created August 18, 2021 04:54
is just a test
static void accountTest(){
List<Account> accountList = [Select Id,Name,Phone,Fax,Industry,Rating,Description From Account Limit 15];
System.assertEquals(15, accountList.size());
}
@renzo01
renzo01 / Infinte Scroll for LWC Datatable
Created August 19, 2021 16:46
How to make a infinite Scroll in Datatable
/**Required Variables */
// @track data = [];
// @track previousOffset = -1;
// @track offset = 0;
// @track limitOfRows = 5;
// totalContractsLineItems = 0;
/**Getter funtions */