Task Detail

  • testing for adding note.

    03/26/2025 19:44:20
  • Show "Task State" for task without previous note: Activity on Tue Jan 16 2018 15:59:53 GMT+0000 (UTC) Problem: I task state was put inside of else statement for if task with no previous task then show "this task has no previous activity". Solve: Moved the code block out, so the code block can be execute right away when the tskId is not == 0.

    10/31/2024 14:23:33
  • Show star-light in Google Chrome: Activity on Tue Jan 16 2018 05:18:33 GMT+0000 (UTC) Problem: the star-light bootstrap has stopped working on Google Chrome for awhile but still working on other browser. Solution: https://bootsnipp.com/snippets/o8WGg BUG The default overflow property for <hr> in some versions of Chrome, Edge and IE is hidden. This results in the following css not rendering properly - the Font Awesome star icon specified in 'content' in hr.star :after (content: "\f005") does not display. FIX To fix the above issue (have the FA star icon render in the header) specify the overflow property in hr.star CSS as 'visible'. hr.star-light, hr.star-primary { margin: 25px auto 30px; padding: 0; max-width: 250px; border: 0; border-top: solid 5px; text-align: center; / Added overflow property and set to 'visible' / overflow: visible; }

    10/31/2024 14:22:48
  • Fix 1970 default date on Completion Date: Activity on Mon Jan 08 2018 22:37:50 GMT+0000 (UTC) 1. Problem: The Completion Date was displayed as 1970-1-1 because toLocaleDateString() was use on empty date field. 2. Solution: created if and else statement to check if the row[0].completion_date is null or not. 3. if null then assign 'yyyy-mm-dd' to completion_date variable then assign to completion_date jason value. 4. if not null then use toLocaleDateString() and assign the result to completion_date variable then assign to completion_date jason value.

    10/31/2024 14:22:14
  • Activity on Fri Jan 05 2018 19:45:30 GMT+0000 (UTC) 1. Removed refresh the page option: window.location.href=window.location.href; 2. I tried to dismiss the modal but $("#closeButtonID").click(), but didn't work. 3. I used $("#idOfTheModal").modal("hide"); --> working method

    10/31/2024 14:21:36