jQWidgets Forums

jQuery UI Widgets Forums Grid Grid Localization

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 10 years, 11 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Grid Localization #59408

    vadivelu
    Participant

    Hi,

    Please assist me how can I get the 3 letters of abbreviated month names from the month names list.

    for example :I am having a month list – monthsNames = [January,February,March,April,Etc…].
    I need to get the 3 letters of month names from monthsNames list for the abbreviated month list dynamically.

    Please assist me.

    Grid Localization #59411

    Peter Stoev
    Keymaster

    Hi vadivelu,

    You can probably use something like:

    var monthNames = [‘January’,’February’,’March’];
    alert(monthNames[0].substring(0, 3));

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.