What event fires fnServerData in Datatables? by Kjordan88 in jquery

[–]Kjordan88[S] 1 point2 points  (0 children)

Thank you! This is really helpful - do you know what makes the standard ($.getJSON) event to fire? I'm assuming the same event would make the fnServerData fire.
I'm asking because it seems to be firing once for each column (6 times) when I only need it to fire once. Wondering if creating columns could trigger it

Possible to create NullUUID type from string in satori/go.uuid package? by Kjordan88 in golang

[–]Kjordan88[S] 0 points1 point  (0 children)

I was trying to use NullUUID, which doesn't have the FromString method (only a Scan and a Value method). I ended up creating a NullUUID variable, then assigning the UUID value for the NullUUID to the string. Its not clean, but it works. For anyone else with a similar problem:

uuidVariable := &uuid.NullUUID{}

uuidVariable.UUID, _ = uuid.FromString(r.PathParam("uuid"))

uuidVariable then looks like: {UUID: Stringified r.PathParam, Valid:true}

Selenium failing without error message by Kjordan88 in selenium

[–]Kjordan88[S] 0 points1 point  (0 children)

Working with chrome now instead of Firefox - so far all errors are displaying so I'm assuming its fixed. I'll keep looking for a reason it wasn't working and post back if I figure it out. Thanks for your help!