ugrás a tartalomhoz

jQuery Date Input [ÉV-HÓ-NAP]

simisoma · 2009. Már. 31. (K), 17.06
Sziasztok!

A JQuery -nek létezik egy jQuery Date Input nevű modulja.

Nem tudja valaki leírni, hogy tudnám a megjelenést az alábbi formátumra állítani: ÉV-HÓ-NAP

Köszönöm! -SimiSoma
 
1

prototype

Poetro · 2009. Már. 31. (K), 17.28

  $(function() {
    // Fefüldefiniáljuk a dateToString függvényt hogy a kívánt formátumban írja ki a dátumot
    DateInput.prototype.dateToString = function(date) {
      return date.getFullYear() + "-" + this.short_month_names[date.getMonth()] + "-" + date.getDate();
    };
    // Fefüldefiniáljuk a stringToDate függvényt hogy a fel tudja dolgozni az új formátumot
    DateInput.prototype.stringToDate = function(string) {
      var matches;
      if (matches = string.match(/^(\d{1,2}) ([^\s]+) (\d{4,4})$/)) {
        return new Date(matches[3], this.shortMonthNum(matches[2]), matches[1], 12, 00);
      } else if (matches = string.match(/^(\d{4,4})-([^\s]+)-(\d{1,2})$/)) {
        return new Date(matches[1], this.shortMonthNum(matches[2]), matches[3], 12, 00);
      } else {
        return null;
      };
    };

    $("#my_specific_input").date_input();
  });
2

Köszönet!

simisoma · 2009. Már. 31. (K), 18.38
Szuper vagy! köszönöm... :-)