David

Results 30 comments of David

https://github.com/davidcfk/StratusForms/commit/4c7a1c91925a3b53a301dd29f63a6b196440e566

hey guys, this is beautiful, I don't even have to depend on Sharepoint Fields to save the radio boxes anymore (see previous comment), I linked to all the changes I...

You could potentially just change the part that throws the alert, to incorporate the closing of the processing div. You may even wrap that into a function and then consequently...

Your server time is my guess is running 12 hours behind. I. Think it works on regional time settings of the site. When somebody of a different timezone adds an...

Wait up... did you declare the field to be a DateTime? Change it just to date only... by default, Sharepoint reckons all appointments take an hour to do... As for...

I'll have a quick look tomorrow... Maybe even remote into a machine that isn't in here as a test.

You know... You are getting a result a day behind because you are one hour behind server time, with your new Date instantiate creates a time 00:00:00 without instructions, SP...

Can you show me the new date code you are using? On Wed., 3 Oct. 2018, 5:43 pm Darrin, wrote: > I tried that as well, I started with the...

Haha I just came across this problem today. You'll also need to do a little more beyond this part, the function that does the lookup only populates the orderBy if...

Something like this in data SPServices: ``` if (query == "") { query = "0"; } else if (orderByField != "") { query = "" + query + ""; }...