Click here to Skip to main content
15,891,033 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 94.1K   2.4K   31  
A working example of a jTable implementation in WebMatrix 3
/*
   jTable localization file for 'Russian' language.
   Author: Stanislav Reznikov
*/
(function ($) {

    $.extend(true, $.hik.jtable.prototype.options.messages, {
        serverCommunicationError: 'Ошибка связи с сервером.',
        loadingMessage: 'Загрузка...',
        noDataAvailable: 'Данные отсутствуют',
        addNewRecord: 'Добавить',
        editRecord: 'Изменить',
        areYouSure: 'Вы уверены?',
        deleteConfirmation: 'Удалить запись?',
        save: 'Сохранить',
        saving: 'Сохранение...',
        cancel: 'Отмена',
        deleteText: 'Удалить',
        deleting: 'Удаление...',
        error: 'Ошибка',
        close: 'Закрыть',
        cannotLoadOptionsFor: 'Невозможно загрузить варианты для поля {0}',
        pagingInfo: 'Записи с {0} по {1} из {2}',
        canNotDeletedRecords: 'Невозможно удалить записи: {0} из {1}!',
        deleteProggress: 'Удаление {0} из {1} записей...'
    });

})(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