function validateDateRange(date1Id, date2tId, errMsg){ date1 = document.getElementById(date1Id).value; date2 = document.getElementById(date2Id).value; //alert(date1 + ‘<>’ + date2); … more →
Ireth Anarion's Blog - Code snippetsirethanarion wrote 5 months ago: function validateDateRange(date1Id, date2tId, errMsg){ date1 = document.getElementById(date1Id).valu … more →
irethanarion wrote 5 months ago: <hx:panelBox styleClass=“panelBox“ id=“att_gridReqDocAttachmentTree“ widt … more →
irethanarion wrote 5 months ago: // returns true when checkBox given by Id is checked function getSelectedCheckBoxById (cbId) { cb = … more →
irethanarion wrote 5 months ago: // hiddenBtnId – id suffix – useful when using JSF, this may be the real(whole string) b … more →
irethanarion wrote 5 months ago: Very helpfully when using JSF! function func_getFieldIdsByTypeAndSuffix(fieldType, endsWithId) { var … more →
irethanarion wrote 5 months ago: function func_endsWith() { var checkStr = „toCheckEndsWithStr“; var endsWith=“Str … more →
irethanarion wrote 5 months ago: Форматирането на „type=’file’“, изисква допълнителни усилия, а когато ни е н … more →
irethanarion wrote 5 months ago: function openWin( txtFieldId) { var obj=new Object(); obj.Name = „parent“; var tst; if ( … more →
irethanarion wrote 11 months ago: JavaScript Code: function showElement(elemId){ var el = document.getElementById(elemId); if(el != nu … more →
irethanarion wrote 11 months ago: JavaScript Code: function closeWin(){ window.focus(); window.opener = self; window.close();} JSF Cod … more →
irethanarion wrote 11 months ago: Example: http://www.someurl.com/index.html?param1=param1Value¶m2=param2Value JavaScript Code … more →
irethanarion wrote 11 months ago: // !Not working with Google Chromefunction openWin() { //IE6 if (window.showModalDialog) { window.sh … more →
lilacor wrote 1 year ago: Придържайте се към стандартите, когато е възможно Хората са свикнали, че „синьо подчертано” означава … more →