ContributionsMost RecentMost LikesSolutionsRe: Upcoming Changes to JavaScript in Quickbasewe use JS for allowing checkboxes to be checked without going in and editing the field, and IOL. Taking this option off the table is a huge setback, that to be honest will make me have to be re-evaluated if we will continue with QuickBase. I have been somewhat disappointed overall. when I want to do something, and I have asked for assistance, you always lead me to Juiced or some other 3rd party solution. Then pipelines came and it could have helped, but the cost of pipeline step runs were ridiculous, and SLOW... IOL is a great feature that I was planning on expanding onto, but I guess I won't now. I understand you are trying to keep everything secure, but if I can't have a simple button check a checkbox and refresh the page; then the usability of QuickBase is no longer there.Re: How To Dialog?is it possible to upload a file while in the dialog screen? For example add a "choose file" button, and then having another button then change other fields. the code below is what I have, but it is not actually adding the file. HTML for file chooser markup+='<input id="myFile" type="file" name="myFile">'; now my button that will eventually edit other fields as well. "SAVE FILE": function() { $.post(dbidClients, { act: "API_EditRecord", rid: rid, _fid_18: document.getElementById( "myFile").value }).then(function() { document.location.reload(true); }); }, Re: How To Dialog?Thanks for the help, I got it now.Re: How To Dialog?it there a way to add a text input box then buttons? In the end it would be great if this was an option, but I have so far not been able to find anything on this. thanks in advanced.