Forum Discussion
- QuickBaseCoachDQrew CaptainI presume you are talking about Zip + 4 where there is an optional suffix.
one suggestion is to have the Zip field be called [Zip 5] be a text field and set the field properties to limit to 5 characters. Then have a field called [Zip 4] and limit to 4 characters. Show these in add and edit mode.
Then have a formula field
List("-", [Zip 5], [Zip 4])
This presumes that your data entry is by hand and not imported. - JohnThomasQrew Cadet
- JohnThomasQrew CadetI was asking like this . Do i have any native Quick Base option
- QuickBaseCoachDQrew CaptainI don't think so.
- JohnThomasQrew CadetIf there is any native quick base option Please let me know that one
Other wise using javscript we can do this one
$("#_fid_45").keyup(function() {
let val = $(this).val();
if(val.length > 5) {
let digits = val.split(/(\d{1,5})/);
let str = "";
for (let group of digits)
{
if (/^\d+$/.test(group))
{
str += group + "-";
}
}
str = str.substring(0, str.length - 1);
$(this).val(str);
}
});
Insted of _fid_45 give your fid Id- AngelAngelQrew Assistant CaptainHow and where are you referencing this JS?
So I am assuming you create a Formula Text field with HTML enabled and writing this piece of code? But where are you calling it from? - JohnThomasQrew CadetUsing IOL Technique.
Create a formula text field and have the below code
Create a page in Pages name it module.js and have the above code
with field id replaced. Then it will work ,You can name the page
whatever but you need to make the same name on the formula Field"<img qbu=\"module\" src=\"/i/clear2x2.gif\" " & "onload=\"javascript:if(typeof QBU=='undefined'){QBU={};$.getScript('" & URLRoot() & "db/" & Dbid() & "?a=dbpage&pagename=module.js&rand='+Math.random())}\">"