0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Redmine】ユーザ一覧画面で姓・名の順にカラムを変更するカスタマイズ

Last updated at Posted at 2020-07-25

できること

Redmineの管理画面にて、 名・姓 の順に表示されるテーブルカラムを 姓・名 の順に変更します。
管理者しか見ないですが、日本人の名前を日本語で登録していると地味に気になるところかなと…

コード

/*
ユーザ一覧画面で姓を名の前に表示するカスタマイズ
*/
$(function() {
  $('#content > div.autoscroll > table > thead > tr > th:nth-child(3)').insertBefore('#content > div.autoscroll > table > thead > tr > th:nth-child(2)');
  $('#content > div.autoscroll > table > tbody > tr').each((idx, element) => {
    $(element).children('.lastname').insertBefore($(element).children('.firstname'));
  })
});
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?