05/27/2025 | How to lock the Dock on your Mac to prevent unwanted changes To prevent your Dock from being messed with by anyone, you can lock it down using Terminal. Mac • Tuesday May 27, 2025 | Lock the Dock contents. true to lock, false to unlock. Lock the Dock position Lock the Dock size | |
03/06/2025 | Standard URI escape along with single and double quotes JavaScript • Thursday March 6, 2025 | | |
03/06/2025 | Disable sorting for one specific Datatables.net column via class and columnDefs JavaScript • Thursday March 6, 2025 | Add "no-sort" class to your column header Add the following columnDefs code to your initialize of the Datatable. | |
02/27/2025 | Apply show more and show less to text blocks in a Notes view JavaScript • JQuery • Lotus Notes View • Thursday February 27, 2025 | Just wrap your content in a span or div with the more class JS Code | |
02/26/2025 | Hide categorized view rows if the total is 1 Helps parse a categorized view more quickly when trying to find instances greater than 1 of something. JQuery • Lotus Notes View • Wednesday February 26, 2025 | Add this to your $$ViewTemplate for the categorized view. The first column should total and hide the details row. | |
02/07/2025 | AtLeft and AtRight in Excel Microsoft Excel • Friday February 7, 2025 | If value is XX-XXX | |
01/31/2025 | Datatables Excel export trying to convert part number to date If the column has 4519-00-01 as a value, Excel tries to convert it to a date. JavaScript • Friday January 31, 2025 | Add this to the main Datatable init. Add orthogonal: 'sort' to the exportOptions of your excel export line | |
01/26/2025 | FIX: Datatables Column Search/Filter - Double click required to open hyperlinks When the Datatables column filtering is used and you have a hyperlink or button in the table, you end up having to click twice. Once to remove focus from the filter field and second to actually execute the link/button. JavaScript • JQuery • Sunday January 26, 2025 | Add the blur followed by the focus to your filtering logic | |
01/18/2025 | Allow carriage returns and html to a Bootstrap Tooltip HTML • Saturday January 18, 2025 | Add data-bs-html="true" to the tooltip code | |
01/13/2025 | Jump to a row in a DataTables.net view JavaScript • JQuery • Lotus Notes Form • Monday January 13, 2025 | Add this to your form head to pickup the docunid that you want to jump to via a URLQueryString METHOD #1 Method #2 | |
11/18/2024 | Scroll to an Element Inside a Div JavaScript • JQuery • Monday November 18, 2024 | Create your container div with id, height, and overflow specified. Call your function to jump to the specified entry. In this example I'm using docunid of each database document as the unique id key. | |
11/04/2024 | Evaluate a Lotus formula in a LotusScript line. Lotus Formula • LotusScript • Monday November 4, 2024 | | |
10/18/2024 | Format now mm/dd/yyyy hh:mm AMPM JavaScript • JQuery • Friday October 18, 2024 | | |
10/16/2024 | Multiple stopwatch counters via jQuery with start date/time HTML • JavaScript • JQuery • Wednesday October 16, 2024 | jQuery HTML | |
09/03/2024 | Date Suffix Lotus Formula • Tuesday September 3, 2024 | | |
08/29/2024 | Rotate text 90 degrees in html CSS • HTML • Thursday August 29, 2024 | | |
08/28/2024 | Add table cell borders with PDF export button when using Datatables.net The default export does not have the table cell borders which can make it difficult to read for rich tables. JavaScript • Wednesday August 28, 2024 | BEFORE AFTER - You can see the customize portion is added. | |
08/12/2024 | Smooth scroll to an element JavaScript • JQuery • Monday August 12, 2024 | | |
05/24/2022 | Update back-end Datatables object from front-end cell reference This updates the back-end table object as well as the front-end html table. This is only needed when content is updated after the initial table has been drawn and you're using the Datatables native PDF, XLS, CSV exports. JavaScript • Tuesday May 24, 2022 | | |
02/22/2022 | Calculate Decimal Degrees from Degrees, Minutes, and Seconds | To calculate decimal degrees, we use the DMS to decimal degree formula below: Decimal Degrees = degrees + (minutes/60) + (seconds/3600) | |
02/04/2022 | Set specific date for Comiseo Daterangepicker https://tamble.github.io/jquery-ui-daterangepicker/# JavaScript • Friday February 4, 2022 | Set the variables Apply it as the dateStart | |
01/10/2022 | Play randomized functions JavaScript • Monday January 10, 2022 | | |
11/29/2021 | Initialize JavaScript Date to specific timezone JavaScript • Monday November 29, 2021 | The final timeNow will be a Date/Time object with a value specific to Mountain time. | |
11/17/2021 | Convert filepath to webdbpath (aka WebDbname) LotusScript • Wednesday November 17, 2021 | | |
09/29/2021 | Disabled keyboard on mobile device HTML • Wednesday September 29, 2021 | Add inputmode attribute with value none. | |
09/21/2021 | Add Spaces to Dock in Mac OS Mac • Tuesday September 21, 2021 | Launch Utilities > Terminal Execute the following code for each space you want They won't show up until you restart the Dock. | |
06/09/2021 | Custom Sticky logic when the native stick-top can't work There are a number of reasons why the CSS position: sticky property might not work such as browser compatibility, ancestor element has OVERFLOW property set, height is not set on parent element, or parent element is a flexbox. JavaScript • JQuery • Wednesday June 9, 2021 | Call the following javascript and jQuery when the DOM is ready. CSS | |
05/13/2021 | Separate multiple attached files into individual notes documents Use this agent code to break up the attachments into their own notes documents. LotusScript • Thursday May 13, 2021 | | |
03/14/2020 | Always show scrollbars in Safari via CSS CSS • Saturday March 14, 2020 | | |
03/02/2020 | Disable double-tap "zoom" option in browser on touch devices CSS • Monday March 2, 2020 | Add this css to the specific DOM object or all. | |