OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/app/components/wp-fast-table/helpers/wp-table-row-helpers.ts

16 lines
329 B

/**
* Return the row html id attribute for the given work package ID.
*/
export function rowId(workPackageId:string):string {
return `wp-table-row-${workPackageId}`;
}
/**
* Locate the row by its work package ID.
*/
export function locateRow(id:string):HTMLElement|null {
return document.getElementById(rowId(id));
}