Forum Discussion
_anomDiebolt_
9 years agoQrew Elite
The instructions for setting up IOL are in the Notes field of every record in this application. I added the code in my prior answer here:
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=585
Pastie Database
https://haversineconsulting.quickbase.com/db/bgcwm2m4g?a=dr&rid=585
- ArshadKhwaja9 years agoQrew CommanderThank you so much. Good instructions. One clarification though. Do I need to add the formula field only once in the table and this could work with different modules. I seem to have two similar fields with different names but addressing different issues.
- ArshadKhwaja8 years agoQrew CommanderHaving some issue. I created the .JS file. I already have the required variables. I also created a text field with the following code:
[iol] & "MultiSelect.js" & [/iol]
But when I am saving a new record, it does not fire the error. - _anomDiebolt_8 years agoQrew EliteDebug with console.log() statements in your code.
- ArshadKhwaja8 years agoQrew CommanderThanks. Where do you place it?
$("#_fid_110").bind("multiselectclose", function(event, ui){ var selections = $("#_fid_110").multiselect("getChecked");
if (selections.length < 2) {
$("#_fid_110").multiselect("open");
}
});