Forum Discussion
ChayceDuncan2
7 years agoQrew Cadet
So out of the box it would likely be a good feature enhancement, but currently there is nothing in the settings that has that as a feature. That said - if you're familiar with the Image Onload Technique and feel comfortable with scripting techniques, you could run a script with IOL that dynamically adds HTML to the page when it loads, and then add your own Javascript into the element to achieve the functionality you want. Credit to the link below for the building block behind it.
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=582&_ga=2.54479343.670650234...
With that - you can run a code page that does something like:
This will add a search box next to the save button - all you would have to do is configure the searchCustomer() function in your code page and you'd be all set.
Chayce Duncan | Technical Lead
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=582&_ga=2.54479343.670650234...
With that - you can run a code page that does something like:
var input_html = "<input id='customer' type='text' placeholder='Search Customer #' style='border-radius:2px;height:25px;font-size: 12pt'>";Looks something like this when complete
input_html += "<span style='cursor:pointer;margin-right: 25px' onclick='searchCustomers()' class='BrandBarIconDark Find DisplayInlineBlock WithText'></span>"
$("#pageNavBarActions").prepend(input_html)
This will add a search box next to the save button - all you would have to do is configure the searchCustomer() function in your code page and you'd be all set.
Chayce Duncan | Technical Lead
(720) 739-1406 | chayceduncan@quandarycg.com
Quandary Knowledge Base
ChrisNewsome
7 years agoQrew Captain
this is exactly what I wanted, but I have no idea about IOL. If you can give me an of how to pull that off, I'll look into it.