Multipurpose Buttons Content Tutorial
โœ‚๐Ÿƒ๐Ÿพโ€โ™€๏ธ๐Ÿƒ๐Ÿผโ€โ™‚๏ธ
๐Ÿ“–

Multipurpose Buttons Content Tutorial

Multipurpose Buttons Content Tutorial

Yesterdayโ€™s proof of concept โ€œMultipurpose Buttonsโ€ web application of Multipurpose Buttons Primer Tutorial was pretty typical of many โ€œproof of conceptโ€s out there, not rocking the boat with the messy woooooorrrrllllllddd of what a user might enter as the โ€œcontentโ€ of those buttons. But that โ€œproof of conceptโ€ idea is important to establish โ€ฆ

  • what is crucial โ€ฆ as well as โ€ฆ
  • what is important
  • what needs attention when genericizing (which is todayโ€™s work) โ€ฆ and up above all this โ€ฆ
  • whether the whole concept is feasible for controlled data content
  • whether the whole concept is feasible for user entered data content

โ€ฆ and happily, though there are some cross-browser tweaks (always a bit of a genericization โ€œsour pussโ€ for us), we think that last option above is indeed possible. The whole exercise has certainly borne out how much more powerful is the HTML โ€œbuttonโ€ element for this multipurpose thinking, than is the โ€œinput type=buttonโ€ (older) HTML element type, that โ€œbuttonโ€ element now truly a โ€œcontainerโ€ type of element (for us, the HTML elements where the property innerHTML has a proper meaning).

Proof of this is that this genericization drive today hardly concerned itself with any HTML โ€œbuttonโ€ element concerns, rather it was a constant battle to make the HTML โ€œinput type=buttonโ€ โ€œhang in thereโ€.

Okay then, if we are allowing a โ€œvertical dimensionโ€ to our contents and we offer you the choice of โ€ฆ

  • textarea โ€ฆ versus โ€ฆ
  • div contenteditable=true

โ€ฆ as your user interaction HTML element of choice, which do you think is better? Well, our choice was a no brainer, as we had decided the reasoning would be โ€ฆ

  • encase โ€ฆ
  • whatever element above is used โ€ฆ
  • within an HTML form action=[hereโ€™sLookingAtYouKid] method=GET navigational arrangement

โ€ฆ as our means of passing through user interaction findings. Well, this rules out โ€œdiv contenteditable=trueโ€ as the โ€œnameโ€ property of HTML โ€œformโ€ elements map from that elementโ€™s โ€œvalueโ€ property, something a โ€œdiv contenteditable=trueโ€ lacks but a โ€œtextareaโ€ element excels at (as well as its โ€œinnerHTMLโ€ initializing of data (ie. value) talents, as well).

This genericization drive also taught us that even if a monospaced font such as Courier New is enforced for the HTML โ€œinput type=buttonโ€ there can be different โ€œdisplay looksโ€ between data containing โ€ฆ

  • space (โ€ โ€œ) character (as whitespace) โ€ฆ versus โ€ฆ
  • non-breaking space (โ€œ โ€) character

โ€ฆ the latter crucial for us to even up record lengths of the underlying โ€œdisplay dataโ€ used to make the โ€œinput type=buttonโ€ elements โ€œlookโ€ as the user would have intended, meaning that the non-breaking whitespace character (as one character) above is used for โ€œdisplay dataโ€ that is a โ€œsquare block of textโ€ so that โ€œdisplay:blockโ€ can work with CSS โ€œfont-sizeโ€ and โ€œwidthโ€ and โ€œheightโ€ to facilitate this HTML โ€œinput type=buttonโ€ display look.

As youโ€™d expect, coming back (ie. callback) via โ€œaction=[hereโ€™sLookingAtYouKid]โ€ form navigation above means we need a document.body โ€œonloadโ€ event function as way below to set up display settings and the creation of that โ€œonclickโ€ logic evaled โ€œif logicโ€ setting the global variable โ€œgvalโ€ โ€ฆ



if (cnum != ("1 2 3 " + String.fromCharCode(10) + "4 5 6 " + String.fromCharCode(10) + "7 8 9 ")) { // true user interaction data here

gval='';

eval(ifstr); // for Horizontal and Vertical input type=button ... just Horizontal uses "ifstrone" variable instead

if (gval != '') { setTimeout(agval, 1000); }

}

โ€ฆ is set up at global initializations followed by the โ€œfunction onlโ€ document.body โ€œonloadโ€ event logic below โ€ฆ



var gval='';

var cnum=location.search.split('content=')[1] ? decodeURIComponent(location.search.split('content=')[1].split('&')[0]).replace(/\+/g,' ') : "1 2 3 " + String.fromCharCode(10) + "4 5 6 " + String.fromCharCode(10) + "7 8 9 ";

while (cnum.indexOf(' ' + String.fromCharCode(13) + String.fromCharCode(10)) != -1) {

cnum=cnum.replace(' ' + String.fromCharCode(13) + String.fromCharCode(10), ' [13][10]');

}

while (cnum.indexOf(' ' + String.fromCharCode(10) + String.fromCharCode(13)) != -1) {

cnum=cnum.replace(' ' + String.fromCharCode(10) + String.fromCharCode(13), ' [10][13]');

}

while (cnum.indexOf(' ' + String.fromCharCode(10)) != -1) {

cnum=cnum.replace(' ' + String.fromCharCode(10), ' [10]');

}

while (cnum.indexOf(' ' + String.fromCharCode(13)) != -1) {

cnum=cnum.replace(' ' + String.fromCharCode(13), ' [13]');

}




while (cnum.indexOf(String.fromCharCode(13) + String.fromCharCode(10)) != -1) {

cnum=cnum.replace(String.fromCharCode(13) + String.fromCharCode(10), ' [13][10]');

}

while (cnum.indexOf(String.fromCharCode(10) + String.fromCharCode(13)) != -1) {

cnum=cnum.replace(String.fromCharCode(10) + String.fromCharCode(13), ' [10][13]');

}

while (cnum.indexOf(String.fromCharCode(10)) != -1) {

cnum=cnum.replace(String.fromCharCode(10), ' [10]');

}

while (cnum.indexOf(String.fromCharCode(13)) != -1) {

cnum=cnum.replace(String.fromCharCode(13), ' [13]');

}

cnum=cnum.replace(/\[13\]\[10\]/g, String.fromCharCode(13) + String.fromCharCode(10));

cnum=cnum.replace(/\[10\]\[13\]/g, String.fromCharCode(10) + String.fromCharCode(13));

cnum=cnum.replace(/\[13\]/g, String.fromCharCode(13));

cnum=cnum.replace(/\[10\]/g, String.fromCharCode(10));



var origcnumx=cnum; //.trim();

var cnumx=cnum; //.trim();



function onl() {

var ih='', jh=0, kh=0, lh=0, onelh=0, zero=0, eight=0;

maxlh=0;

if (cnum != ("1 2 3 " + String.fromCharCode(10) + "4 5 6 " + String.fromCharCode(10) + "7 8 9 ")) { // true user interaction data here

var ccnums=[];

if (origcnumx.indexOf(String.fromCharCode(13) + String.fromCharCode(10)) != -1) {

ccnums=origcnumx.split(String.fromCharCode(13) + String.fromCharCode(10));

document.getElementById('content').rows='' + ccnums.length;

} else if (origcnumx.indexOf(String.fromCharCode(10) + String.fromCharCode(13)) != -1) {

ccnums=origcnumx.split(String.fromCharCode(10) + String.fromCharCode(13));

document.getElementById('content').rows='' + ccnums.length;

} else if (origcnumx.indexOf(String.fromCharCode(13)) != -1) {

ccnums=origcnumx.split(String.fromCharCode(13));

document.getElementById('content').rows='' + ccnums.length;

} else {

ccnums=origcnumx.split(String.fromCharCode(10));

document.getElementById('content').rows='' + ccnums.length;

}

//alert(ccnums.length);

for (jh=1; jh<=ccnums.length; jh++) {

if (eval('' + ccnums[eval(-1 + jh)].length) > eval('' + maxlh)) { maxlh=ccnums[eval(-1 + jh)].length; }

}

for (jh=1; jh<=cnumx.length; jh++) {

ih+="<span class=bxandy onclick='gval=this.innerHTML;'>" + cnumx.substring(eval(-1 + jh)).substring(0,1) + "</span>";

//if (lh == 0) { alert(cnumx.substring(eval(-1 + jh)).substring(0,1)); }

if ((cnumx + ' ').substring(eval(0 + jh)).substring(0,1)) {

zero=eight;

if (eight > 0) { eight--; }

} else {

zero=0;

}

if (ifstrone.indexOf('if ') == -1) {

ifstrone+=" if (eval(propx) <= eval(" + eval(1 + onelh) + "." + zero + " / " + cnumx.length + ")) { gval='" + cnumx.substring(eval(-1 + jh)).substring(0,2) + "'; } ";

} else {

ifstrone+=" else if (eval(propx) <= eval(" + eval(1 + onelh) + "." + zero + " / " + cnumx.length + ")) { gval='" + cnumx.substring(eval(-1 + jh)).substring(0,2) + "'; } ";

}

if (ccnums.length == 1) {

if (ifstr.indexOf('if ') == -1) {

ifstr+=" if (eval(propx) <= eval(" + eval(1 + lh) + "." + zero + " / " + maxlh + ")) { gval='" + cnumx.substring(eval(-1 + jh)).substring(0,2) + "'; } ";

} else {

ifstr+=" else if (eval(propx) <= eval(" + eval(1 + lh) + "." + zero + " / " + maxlh + ")) { gval='" + cnumx.substring(eval(-1 + jh)).substring(0,2) + "'; } ";

}

} else {

if (ifstr.indexOf('if ') == -1) {

ifstr+=" if (eval(propx) <= eval(" + eval(1 + lh) + "." + zero + " / " + maxlh + ") && eval(propy) <= eval(" + eval(1 + kh) + ".0 / " + ccnums.length + ")) { gval='" + cnumx.substring(eval(-1 + jh)).substring(0,2) + "'; } ";

} else {

ifstr+=" else if (eval(propx) <= eval(" + eval(1 + lh) + "." + zero + " / " + maxlh + ") && eval(propy) <= eval(" + eval(1 + kh) + ".0 / " + ccnums.length + ")) { gval='" + cnumx.substring(eval(-1 + jh)).substring(0,2) + "'; } ";

}

}

lh++;

onelh++;

if (lh == ccnums[kh].length && kh < ccnums.length) {

if (lh < maxlh) {

while (lh < maxlh) {

ih+="<span class=bxandy onclick='gval=this.innerHTML;'> </span>";

if (ccnums.length == 1) {

if (ifstr.indexOf('if ') == -1) {

ifstr+=" if (eval(propx) <= eval(" + eval(1 + lh) + ".0 / " + maxlh + ")) { gval=' '; } ";

} else {

ifstr+=" else if (eval(propx) <= eval(" + eval(1 + lh) + ".0 / " + maxlh + ")) { gval=' '; } ";

}

} else {

if (ifstr.indexOf('if ') == -1) {

ifstr+=" if (eval(propx) <= eval(" + eval(1 + lh) + ".0 / " + maxlh + ") && eval(propy) <= eval(" + eval(1 + kh) + ".0 / " + ccnums.length + ")) { gval=' '; } ";

} else {

ifstr+=" else if (eval(propx) <= eval(" + eval(1 + lh) + ".0 / " + maxlh + ") && eval(propy) <= eval(" + eval(1 + kh) + ".0 / " + ccnums.length + ")) { gval=' '; } ";

}

}

lh++;

}

}

ih+="<br>";

kh++;

lh=0;

}

}

if (maxlh == 0) { maxlh=lh; }

//alert(ifstrone);

document.getElementById('ix').style.marginLeft='1px';

document.getElementById('ix').style.marginRight='3px';

if (/chrome/i.test( navigator.userAgent )) {

document.getElementById('ix').style.width='' + Math.round(eval(0 + cnumx.length) * 8.0) + 'px';

document.getElementById('ixandy').style.width='' + Math.round(eval(0 + maxlh) * 7.5) + 'px';

} else {

document.getElementById('ix').style.width='' + Math.round(eval(0 + cnumx.length) * 6.75) + 'px';

document.getElementById('ixandy').style.width='' + Math.round(eval(0 + maxlh) * 8.0) + 'px';

}

document.getElementById('ixandy').style.height='' + Math.floor(eval(eval('' + ccnums.length) * 14) + 4) + 'px';

document.getElementById('bxandy').innerHTML=ih.replace(/\>\ \<\/span\>/g, '>&nbsp;</span>');

document.getElementById('bx').innerHTML=ih.replace(/\<br\>/g,'');

document.getElementById('ix').title='Please click a character.';

document.getElementById('ixandy').title='Please click a character.';

} else {

document.getElementById('ix').style.marginLeft='1px';

document.getElementById('ix').style.marginRight='3px';

if (/chrome/i.test( navigator.userAgent )) {

document.getElementById('ix').style.width='' + Math.round(eval(0 + cnumx.length) * 8.0) + 'px';

document.getElementById('ixandy').style.width='' + Math.round(eval(0 + 6) * 7.5) + 'px';

} else {

document.getElementById('ix').style.width='' + Math.round(eval(0 + cnumx.length) * 6.75) + 'px';

document.getElementById('ixandy').style.width='' + Math.round(eval(0 + 6) * 8.0) + 'px';

}

document.getElementById('ixandy').style.height='' + Math.floor(eval(eval('' + '3') * 14) + 4) + 'px';

}

}

So, feel free to โ€œuseโ€ the seconddraft multipurpose_buttonsโšซhtml liveโœ‚run link to see what we mean.



Previous relevant Multipurpose Buttons Primer Tutorial is shown below.

Multipurpose Buttons Primer Tutorial

Multipurpose Buttons Primer Tutorial

At this blog we go hard at spruiking the qualities of HTML dropdown (ie. select) elements to do with โ€ฆ

  • the display brevity โ€ฆ as well as โ€ฆ
  • richness of content possibilities

โ€ฆ they can infer upon a webpage. At the expense of โ€œthe display brevityโ€ we are keen to use a dropdown attribute โ€œsizeโ€ set so as to display all the content on the screen where โ€ฆ

  • it can sensibly fit on the screen โ€ฆ and โ€ฆ
  • it does not matter that mobile platforms do not recognize the โ€œsizeโ€ attribute โ€œvertical expansionโ€ of a dropdown that takes place on non-mobile platforms

Today, though, weโ€™re here to show you that, with a bit of Javascript event logic, a โ€ฆ

  • button element โ€ฆ even better than an โ€ฆ
  • input type=button element

โ€ฆ can go some of the way to mimicking those qualities we like so much above, doing even better than the x (ie. horizontal) dimension limit of one that a dropdown has, to be able to fit more data content in horizontally, as a display mechanism you might say has โ€œthe display brevityโ€ combined with content complexity you are after.

We wrote a proof of concept multipurpose_buttonsโšซhtml, featuring the one Javascript โ€œonclickโ€ logic function as per โ€ฆ



var x=0, y=0, lastx=0,lasty=0;

var propx=0.0, propy=0.0;



function iclicked(event) {

var rectis=null, isok=true;;

if (('' + event.target.id) == 'bxandy') {

setTimeout(agval, 1000);

} else if (('' + event.target.className) == 'bxandy') {

setTimeout(agval, 1000);

} else if (('' + event.target.id) == 'bx') {

setTimeout(agval, 1000);

} else if (('' + event.target.className) == 'bx') {

setTimeout(agval, 1000);

} else if (('' + event.target.id) == 'ixandy') {

rectis=event.target.getBoundingClientRect();

if (event.touches) { // thanks to https://stackoverflow.com/questions/24567441/how-do-i-detect-two-fingers-at-touchstart-in-javascript

if (event.touches.length > 1) { isok=false; }

}

if (isok) {

if (event.touches) {

var touches1 = event.changedTouches;

var first1 = touches1[0];

x = first1.clientX;

y = first1.clientY;

} else if (event.clientX || event.clientY) {

x = event.clientX; // - elemLeft;

y = event.clientY; // - elemTop;

} else {

x = event.pageX; // - elemLeft;

y = event.pageY; // - elemTop;

}

lastx=x;

lasty=y;

propx=eval(eval(x - rectis.x) / rectis.width);

propy=eval(eval(y - rectis.y) / rectis.height);

if (eval(propx) <= 0.333 && eval(propy) <= 0.333) {

gval='1';

setTimeout(agval, 1000);

} else if (eval(propx) >= 0.666 && eval(propy) <= 0.333) {

gval='3';

setTimeout(agval, 1000);

} else if (eval(propy) <= 0.333) {

gval='2';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.333 && eval(propy) <= 0.666) {

gval='4';

setTimeout(agval, 1000);

} else if (eval(propx) >= 0.666 && eval(propy) <= 0.666) {

gval='6';

setTimeout(agval, 1000);

} else if (eval(propy) <= 0.666) {

gval='5';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.333) {

gval='7';

setTimeout(agval, 1000);

} else if (eval(propx) >= 0.666) {

gval='9';

setTimeout(agval, 1000);

} else {

gval='8';

setTimeout(agval, 1000);

}

}

} else if (('' + event.target.id) == 'ix') {

rectis=event.target.getBoundingClientRect();

if (event.touches) { // thanks to https://stackoverflow.com/questions/24567441/how-do-i-detect-two-fingers-at-touchstart-in-javascript

if (event.touches.length > 1) { isok=false; }

}

if (isok) {

if (event.touches) {

var touches1 = event.changedTouches;

var first1 = touches1[0];

x = first1.clientX;

y = first1.clientY;

} else if (event.clientX || event.clientY) {

x = event.clientX; // - elemLeft;

y = event.clientY; // - elemTop;

} else {

x = event.pageX; // - elemLeft;

y = event.pageY; // - elemTop;

}

lastx=x;

lasty=y;

propx=eval(eval(x - rectis.x) / rectis.width);

propy=eval(eval(y - rectis.y) / rectis.height);

if (eval(propx) <= 0.111) {

gval='1';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.222) {

gval='2';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.333) {

gval='3';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.444) {

gval='4';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.555) {

gval='5';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.666) {

gval='6';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.777) {

gval='7';

setTimeout(agval, 1000);

} else if (eval(propx) <= 0.888) {

gval='8';

setTimeout(agval, 1000);

} else {

gval='9';

setTimeout(agval, 1000);

}

}

}

}



function agval() {

if (gval != '') {

alert('You clicked ' + gval);

gval='';

}

}

โ€ฆ liveโœ‚run linked web application you can try for yourself regarding this, or see, in action, below โ€ฆ

Did you know?

Regarding the input type=button โ€œHorizontal and Vertical Dimensionsโ€ element โ€œlookโ€ above we needed help from the internet, thanks, to stop some web browsers such as Firefox, Chrome and Opera not โ€œfattening outโ€ the element height so as to show three lines of numbers, as per the CSS (thanks to html โ€“ word-wrap break-word does not work in this example โ€“ Stack Overflow and Wrapping an HTML input button's text value over multiple lines โ€“ Stack Overflow and html โ€“ Button height on Chrome โ€“ Stack Overflow) โ€ฆ



<style>

#ixandy {

font-size: 12px;

width: 36px;

height: 44px;



overflow-wrap: break-word;

word-wrap: break-word;



-ms-word-break: break-all;

/* This is the dangerous one in WebKit, as it breaks things wherever */

word-break: break-all;

/* Instead use this non-standard one: */

word-break: break-word;



/* Adds a hyphen where the word breaks, if supported (No Blink) */

-ms-hyphens: auto;

-moz-hyphens: auto;

-webkit-hyphens: auto;

hyphens: auto;



white-space: normal;



box-sizing: content-box;

-moz-box-sizing: content-box;

-ms-box-sizing: content-box;

-webkit-box-sizing: content-box;

}

</style>

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in eLearning, Event-Driven Programming, Tutorials and tagged , , , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *