function validateDateRange(date1Id, date2tId, errMsg){ date1 = document.getElementById(date1Id).value; date2 = document.getElementById(date2Id).value; //alert(date1 + ‘<>’ + date2); … more →
Ireth Anarion's Blog - Code snippetsmusic in colours wrote 2 months ago: Сингли, издавани през тази седмица: Example – Watch The Sun Come Up, Ian Brown – Stellify, Sergeant … more →
irethanarion wrote 4 months ago: function validateDateRange(date1Id, date2tId, errMsg){ date1 = document.getElementById(date1Id).valu … more →
irethanarion wrote 4 months ago: public enum EnumRefValues { ref_type_1(„sysNameRefType1″, „name1″), ref_type … more →
irethanarion wrote 4 months ago: For objects cloning, you can use java.lang.Cloneable. It is not applicable for deep cloning (for dee … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; import java.util.Scanner; public class ScannerExample{ /** * @param args */ … more →
irethanarion wrote 4 months ago: Предоставя възможност за избор на дата, като календара се появява като popup, валидира въведеното в … more →
irethanarion wrote 4 months ago: <hx:panelBox styleClass=“panelBox“ id=“att_gridReqDocAttachmentTree“ widt … more →
irethanarion wrote 4 months ago: Very helpfully when using JSF! function func_getFieldIdsByTypeAndSuffix(fieldType, endsWithId) { var … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; import java.io.ByteArrayOutputStream; import java.io.File; import java.io.F … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; public class RecursiveStringPermutations { public static void main(String a … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; public class RecursiveFibonacci { // recursive declaration of method fibona … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; public class RecursiveFactorial { public static void main(String args[]) { … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; import java.io.IOException; import javax.xml.parsers.DocumentBuilder; impor … more →
irethanarion wrote 4 months ago: package com.acsior.tests; public class HanoiTowers { public static void main(String[] args) { int nD … more →
irethanarion wrote 4 months ago: package com.xxxxx.tests; /** * @author developer0024 */ import java.util.regex.Matcher; import java. … more →
irethanarion wrote 4 months ago: public class BinarySearchIntArrayExample { /** * TODO * * @param args */ public static void main(Str … more →
irethanarion wrote 4 months ago: public class BinarySearch { /** * TODO * * @param args */ public static void main(String[] args) { / … more →
irethanarion wrote 4 months ago: enum AppleEnum { A(10), B(9), C(12), D(15), E(8); private int price; // price of each apple // Const … more →
irethanarion wrote 10 months ago: // Обхожда дървото и маркира необходимите възли, подава се списък с избрани ИД-та и // корена, от ко … more →