plbowers
plbowers
I'm implementing a `:regs` (`:registers`) and need to be able to display many lines. In vim this occurs within the special ex-command section at the bottom and it expands as...
My gmail account is filling up. A year ago I took a few years of my gmail history (earliest) and backed them up and restored them to an archive account....
I am trying to do a date-oriented sync. I have tried both of these commands: gmvault sync --gmail-req "before:2011-02-01" (gmail address) and gmvault sync --imap-req "Before 2011-02-01" (gmail address) In...
There is a section that explains that I can use [$fieldName] to do conditional formatting based on the value of other columns in my list. However, that section should contain...
When I use `StratusFormsAddUserToPeoplePicker()` to add someone to a peoplepicker and then get it back using `StratusFormsGetPeopleFromPeoplePicker()` I get results that look like this: AutoFillDisplayText: "" AutoFillKey: "" Description: ""...
Steps to reproduce: (1) Create a form with a data-StratusFormsRepeatable="Y" section (2) Add a 2nd row so that the delete anchor is visible on both the first and 2nd row...
A new form with a repeatable section (data-StratusFormsRepeatable="Y") does not have any delete option until a 2nd row is added. This should be configurable by code - sometimes you want...
The first argument of `PopulateFormData()` is `form `and as a jquery selector it is supposed to limit which fields are being populated (or at least that's how I've understood it...
In line 715 of stratus-forms-1.55.js you have this line: ` if (repeatableArray[index].StratusFormsParent != "undefined") {` Pretty clearly it was meant to be this: ` if (repeatableArray[index].StratusFormsParent !== undefined) { //...
So after wandering for a while I found #29 and looking at the change and revert there I finally figured out that I could "fix" this behavior by adding the...