Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
The Pastie Database contains 100s of entries many of which employ the IOL technique.
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=td
Each pastie has a link back to the original forum question and in many cases has a link to a live demo. All of the code has been tested at the time it was used but over time there may have been an underlying change in QuickBase which breaks the demo. If the demo does not work as advertised there is probably a small tweak needed.
But the IOL technique is old now. Other techniques have been developed including BOL (Branding OnLoad), EOH (Error On Load), OEH (On Error HTML), and SW (Service Workers). And we have a new technology being developed for QuickBase application using ELM (http://elm-lang.org/) which will take user interface to an unprecedented level. Also, word is that Haskell is coming to Empower 2018.
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=td
Each pastie has a link back to the original forum question and in many cases has a link to a live demo. All of the code has been tested at the time it was used but over time there may have been an underlying change in QuickBase which breaks the demo. If the demo does not work as advertised there is probably a small tweak needed.
But the IOL technique is old now. Other techniques have been developed including BOL (Branding OnLoad), EOH (Error On Load), OEH (On Error HTML), and SW (Service Workers). And we have a new technology being developed for QuickBase application using ELM (http://elm-lang.org/) which will take user interface to an unprecedented level. Also, word is that Haskell is coming to Empower 2018.
- JoshWeeman8 years agoQrew Assistant CaptainThanks! I have been digging into the Pastie Database for the last several days, there is some great stuff in there. I have also reviewed the BOL technique, but have yet to look at using EOH, OEH, or Service Workers for injecting code.
I had assumed (possibly incorrectly) that although they employ different methods, the IOL and BOL techniques have roughly the same level of capabilities of what they can achieve in terms of user interface enhancement. In comparison, do EOH, OEH, or Service Workers offer increased capabilities with regards to UI tweaks? Would love to know the best direction for me to focus my efforts currently (until ELM becomes the new thing). - _anomDiebolt_8 years agoQrew EliteIOL and EOL (variant of IOL) can only inject script onto pages where a raw field can be displayed (new, view, edit, report, grid edit).
BOL can inject script into every page in the application.
SW can inject script into every page in the account. It is also called QuickBase god mode because it is so powerful it can do just about anything including make QuickBase work offline, push notifications as well as act as a full netowrk proxy implemented in JavaScript.
OEH is a way to write native formulas that can use arbitrary script to calculate and display any value without referencing a code page.
ELM is an front end technology that is incredibly powerful and would be used to make user interfaces using code pages. ELM is written in Haskell and beats the pants off of React and Angular. QuickBase is flirting with using React and Angular so I am just sort of rubbing their nose in a better technology, - JoshWeeman8 years agoQrew Assistant CaptainAwesome explanation, thanks for the succinct comparison of the available methods. Very helpful. When do you expect to see solutions involving ELM start to emerge?
- _anomDiebolt_8 years agoQrew EliteI am starting to use ELM now and will probably share and bring something with me to Empower 2018 in Austin in June (https://empower2018.com/).
- _anomDiebolt_8 years agoQrew EliteHere is the updated ELMPOWER logo:
- _anomDiebolt_7 years agoQrew EliteI don't think QuickBase realizes their "double chevron" used in their Empower Logo is one of the monadic bind operators used in Haskell:
The Monad class defines two basic operators: >>= (bind) and return.
infixl 1 >>, >>=
class Monad m where
(>>=) :: m a -> (a -> m b) -> m b
(>>) :: m a -> m b -> m b
return :: a -> m a
fail :: String -> m a
m >> k = m >>= \_ -> k
The bind operations, >> and >>=, combine two monadic values while the return operation injects a value into the monad (container). ... The >> function is used when the function does not need the value produced by the first monadic operator.
Now the double chevron is showing up in JavaScript articles on medium.com:
https://medium.com/the-renaissance-developer/concepts-of-functional-programming-in-javascript-6bc84220d2aa