Problems with Hebrew in datepicker









up vote
0
down vote

favorite












I am using datepicker and I want it to work in Hebrew.
I found this: https://jqueryui.com/datepicker/#localization
but I don't want the user to choose a language. I want ths datepicker to work only in Hebrew.
How can I do that?
I tried this:



 $.datepicker.setDefaults($.datepicker.regional['he']);


i got an answer from Sooriya Dasanayake but now I am trying to add date range and that doesn't work:



 from = $( "#from" ).datepicker(
defaultDate: "+4w",
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#from" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#from" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
to.datepicker( "option", "minDate", getDate( this ) );
),
to = $( "#to" ).datepicker(
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#to" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#to" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
from.datepicker( "option", "maxDate", getDate( this ) );
);

function getDate( element )
var date;
try
date = $.datepicker.parseDate( dateFormat, element.value );
catch( error )
date = null;


return date;


});









share|improve this question























  • try $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] );
    – Sooriya Dasanayake
    Nov 12 at 7:18










  • it doesn't work. I tried '<script> $( function() $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] ); ); </script> </head> <body><input type="text" id="datepicker" name="date" requiered>'
    – ברוך גינזברגר
    Nov 12 at 8:52















up vote
0
down vote

favorite












I am using datepicker and I want it to work in Hebrew.
I found this: https://jqueryui.com/datepicker/#localization
but I don't want the user to choose a language. I want ths datepicker to work only in Hebrew.
How can I do that?
I tried this:



 $.datepicker.setDefaults($.datepicker.regional['he']);


i got an answer from Sooriya Dasanayake but now I am trying to add date range and that doesn't work:



 from = $( "#from" ).datepicker(
defaultDate: "+4w",
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#from" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#from" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
to.datepicker( "option", "minDate", getDate( this ) );
),
to = $( "#to" ).datepicker(
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#to" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#to" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
from.datepicker( "option", "maxDate", getDate( this ) );
);

function getDate( element )
var date;
try
date = $.datepicker.parseDate( dateFormat, element.value );
catch( error )
date = null;


return date;


});









share|improve this question























  • try $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] );
    – Sooriya Dasanayake
    Nov 12 at 7:18










  • it doesn't work. I tried '<script> $( function() $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] ); ); </script> </head> <body><input type="text" id="datepicker" name="date" requiered>'
    – ברוך גינזברגר
    Nov 12 at 8:52













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am using datepicker and I want it to work in Hebrew.
I found this: https://jqueryui.com/datepicker/#localization
but I don't want the user to choose a language. I want ths datepicker to work only in Hebrew.
How can I do that?
I tried this:



 $.datepicker.setDefaults($.datepicker.regional['he']);


i got an answer from Sooriya Dasanayake but now I am trying to add date range and that doesn't work:



 from = $( "#from" ).datepicker(
defaultDate: "+4w",
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#from" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#from" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
to.datepicker( "option", "minDate", getDate( this ) );
),
to = $( "#to" ).datepicker(
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#to" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#to" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
from.datepicker( "option", "maxDate", getDate( this ) );
);

function getDate( element )
var date;
try
date = $.datepicker.parseDate( dateFormat, element.value );
catch( error )
date = null;


return date;


});









share|improve this question















I am using datepicker and I want it to work in Hebrew.
I found this: https://jqueryui.com/datepicker/#localization
but I don't want the user to choose a language. I want ths datepicker to work only in Hebrew.
How can I do that?
I tried this:



 $.datepicker.setDefaults($.datepicker.regional['he']);


i got an answer from Sooriya Dasanayake but now I am trying to add date range and that doesn't work:



 from = $( "#from" ).datepicker(
defaultDate: "+4w",
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#from" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#from" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
to.datepicker( "option", "minDate", getDate( this ) );
),
to = $( "#to" ).datepicker(
changeMonth: true,
numberOfMonths: 3,
showButtonPanel: true,
showOn: "button",
showAnim:"blind",
onSelect: function( selectedDate )
$( "#to" ).datepicker( $.datepicker.regional[ "en-GB" ] );
$( "#locale" ).change(function()
$( "#to" ).datepicker( "option",
$.datepicker.regional[ $( this ).val() ] );
)

)
.on( "change", function()
from.datepicker( "option", "maxDate", getDate( this ) );
);

function getDate( element )
var date;
try
date = $.datepicker.parseDate( dateFormat, element.value );
catch( error )
date = null;


return date;


});






datepicker hebrew






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 15:40

























asked Nov 11 at 20:44









ברוך גינזברגר

11




11











  • try $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] );
    – Sooriya Dasanayake
    Nov 12 at 7:18










  • it doesn't work. I tried '<script> $( function() $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] ); ); </script> </head> <body><input type="text" id="datepicker" name="date" requiered>'
    – ברוך גינזברגר
    Nov 12 at 8:52

















  • try $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] );
    – Sooriya Dasanayake
    Nov 12 at 7:18










  • it doesn't work. I tried '<script> $( function() $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] ); ); </script> </head> <body><input type="text" id="datepicker" name="date" requiered>'
    – ברוך גינזברגר
    Nov 12 at 8:52
















try $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] );
– Sooriya Dasanayake
Nov 12 at 7:18




try $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] );
– Sooriya Dasanayake
Nov 12 at 7:18












it doesn't work. I tried '<script> $( function() $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] ); ); </script> </head> <body><input type="text" id="datepicker" name="date" requiered>'
– ברוך גינזברגר
Nov 12 at 8:52





it doesn't work. I tried '<script> $( function() $( "#datepicker" ).datepicker( $.datepicker.regional[ "he" ] ); ); </script> </head> <body><input type="text" id="datepicker" name="date" requiered>'
– ברוך גינזברגר
Nov 12 at 8:52













1 Answer
1






active

oldest

votes

















up vote
0
down vote













Try this..



 jQuery(function($)
$.datepicker.regional['he'] =
closeText: 'סגור',
prevText: '<הקודם',
nextText: 'הבא>',
currentText: 'היום',
monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
'יולי','אוג','ספט','אוק','נוב','דצמ'],
dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
dayNamesShort: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
dayNamesMin: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
weekHeader: 'Wk',
dateFormat: 'dd/mm/yy',
firstDay: 0,
isRTL: true,
showMonthAfterYear: false,
yearSuffix: '';
$.datepicker.setDefaults($.datepicker.regional['he']);
);





share|improve this answer




















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253052%2fproblems-with-hebrew-in-datepicker%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    Try this..



     jQuery(function($)
    $.datepicker.regional['he'] =
    closeText: 'סגור',
    prevText: '<הקודם',
    nextText: 'הבא>',
    currentText: 'היום',
    monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
    'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
    monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
    'יולי','אוג','ספט','אוק','נוב','דצמ'],
    dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
    dayNamesShort: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
    dayNamesMin: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
    weekHeader: 'Wk',
    dateFormat: 'dd/mm/yy',
    firstDay: 0,
    isRTL: true,
    showMonthAfterYear: false,
    yearSuffix: '';
    $.datepicker.setDefaults($.datepicker.regional['he']);
    );





    share|improve this answer
























      up vote
      0
      down vote













      Try this..



       jQuery(function($)
      $.datepicker.regional['he'] =
      closeText: 'סגור',
      prevText: '<הקודם',
      nextText: 'הבא>',
      currentText: 'היום',
      monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
      'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
      monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
      'יולי','אוג','ספט','אוק','נוב','דצמ'],
      dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
      dayNamesShort: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
      dayNamesMin: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
      weekHeader: 'Wk',
      dateFormat: 'dd/mm/yy',
      firstDay: 0,
      isRTL: true,
      showMonthAfterYear: false,
      yearSuffix: '';
      $.datepicker.setDefaults($.datepicker.regional['he']);
      );





      share|improve this answer






















        up vote
        0
        down vote










        up vote
        0
        down vote









        Try this..



         jQuery(function($)
        $.datepicker.regional['he'] =
        closeText: 'סגור',
        prevText: '<הקודם',
        nextText: 'הבא>',
        currentText: 'היום',
        monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
        'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
        monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
        'יולי','אוג','ספט','אוק','נוב','דצמ'],
        dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
        dayNamesShort: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
        dayNamesMin: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
        weekHeader: 'Wk',
        dateFormat: 'dd/mm/yy',
        firstDay: 0,
        isRTL: true,
        showMonthAfterYear: false,
        yearSuffix: '';
        $.datepicker.setDefaults($.datepicker.regional['he']);
        );





        share|improve this answer












        Try this..



         jQuery(function($)
        $.datepicker.regional['he'] =
        closeText: 'סגור',
        prevText: '<הקודם',
        nextText: 'הבא>',
        currentText: 'היום',
        monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
        'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
        monthNamesShort: ['ינו','פבר','מרץ','אפר','מאי','יוני',
        'יולי','אוג','ספט','אוק','נוב','דצמ'],
        dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
        dayNamesShort: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
        dayNamesMin: ['א'','ב'','ג'','ד'','ה'','ו'','שבת'],
        weekHeader: 'Wk',
        dateFormat: 'dd/mm/yy',
        firstDay: 0,
        isRTL: true,
        showMonthAfterYear: false,
        yearSuffix: '';
        $.datepicker.setDefaults($.datepicker.regional['he']);
        );






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 12 at 9:35









        Sooriya Dasanayake

        8551410




        8551410



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253052%2fproblems-with-hebrew-in-datepicker%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Top Tejano songwriter Luis Silva dead of heart attack at 64

            ReactJS Fetched API data displays live - need Data displayed static

            政党