Click here to Skip to main content
15,885,435 members
Articles / Web Development / ASP.NET

CRUD tables in WebMatrix using jTable jQuery plugin

Rate me:
Please Sign up or sign in to vote.
4.87/5 (12 votes)
23 May 2013CPOL4 min read 94K   2.4K   31  
A working example of a jTable implementation in WebMatrix 3
/*
    jTable localization file for 'Hungarian' language.
    Author: Erik Berman
*/
(function ($) {

    $.extend(true, $.hik.jtable.prototype.options.messages, {
        serverCommunicationError: 'Adatbázis hiba',
        loadingMessage: 'Adatok betöltése...',
        noDataAvailable: 'Nincs elérhető adat!',
        addNewRecord: '+ Új hozzáadása',
        editRecord: 'Módosít',
        areYouSure: 'Biztos benne?',
        deleteConfirmation: 'Az adat véglegesen törlődik. Biztos benne?',
        save: 'Mentés',
        saving: 'Mentés',
        cancel: 'Mégse',
        deleteText: 'Töröl',
        deleting: 'Törlés',
        error: 'Hiba',
        close: 'Bezár',
        cannotLoadOptionsFor: '{0} mező opciói nem elérhetőek!',
        pagingInfo: 'Megjelenítve: {0} - {1} / Összesen: {2}',
        canNotDeletedRecords: '{1} tételből {0} nem törölhető!',
        deleteProggress: '{1} tételből {0} törölve, feldolgozás...',
        pageSizeChangeLabel: 'Row count', //New. Must be localized.
        gotoPageLabel: 'Go to page' //New. Must be localized.
});

})(jQuery);

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer Federfarma Pavia
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions