Redmine is a flexible project management web application written using Ruby on Rails framework.
Questions tagged [redmine-plugins]
377 questions
0
votes
1 answer
Redmind ckeditor plugin : do not show toolbar
I am new to Redmine and I search though the internet but found no help!!!
I followed the instructions here: Source
And it shows me a richtext editor without toolbar.
My Redmine version is 3.1.0 and CKEditor plugin is 1.1.2
I tried to reinstall…

Minh Vo
- 1
0
votes
1 answer
Redmine_RE plugin is not saving the data
i am using the Redmine.3.1.0.Then i have installed redmine_re plugin.But when i try to save the requirement using the Redmine_re plugin i am getting the following error
NameError (undefined local variable or method `connection' for…

Sudharshan Ramaiah
- 179
- 1
- 12
0
votes
1 answer
Rails POST Form Don't Send Full of Data to Database
I work on beginner level web application which is save off days request of users by using simple form.
Here is codes
views/days/index.html.erb
<%= form_for @daysoff, url: {action: "create"} do |f| %>
<%= f.date_field :offdate, id: 'altField' %>
…

Erol Guzoğlu
- 486
- 6
- 24
0
votes
1 answer
dynamic fields in redmine based upon input
I am using custom fields in redmine. I need a set of custom fields to populate based upon how a user answers a question. for instance, if a user chooses "a" they get a series of 3 custom fields that pertain to "a" ..if a user chooses "b" they get a…

westman2222
- 663
- 1
- 12
- 30
0
votes
0 answers
Redmine How to display application menu under specific top menu?
I am working on leave management system plugin so want to show application menu under lms menu.... here i past my init file code
menu :top_menu, :leave_transactions, { :controller => 'dashboard', :action => 'index' }, :caption => 'LMS' , :if =>…

Nikhil Thombare
- 1,058
- 2
- 11
- 26
0
votes
1 answer
Redmine: Make "Spent time" field required for each comment on issue
Me and my co-workers often forget to set spent time on redmine issue.
Is there any way to make "spent time" field required, when changing any issue data?

kelso.md
- 3
- 4
0
votes
1 answer
My app crashes on Heroku, and I can't understand Heroku logs
I develop a Redmine plugin in Ruby on Rails.
Locally, the application works fine both in development and production modes.
But when I deploy it to Heroku, some pages are crashing, specifically some (but not all) custom tabs in project page.
I can't…

General Failure
- 2,421
- 4
- 23
- 49
0
votes
1 answer
redmine: How can I sort by custom field in module
I`ve got
issue.descendants.visible.sort_by(&:lft)
which gets descendant issues sorted my :lft
How can I sort by custom field with was created via CustomField module?

Miroff
- 326
- 4
- 15
0
votes
1 answer
How to solve this internal error in redmine
When I try to connect to database in Redmine custom workflow, and click on "Save", I get Redmine Internal Error. Please find the code below
@connection = ActiveRecord::Base.establish_connection(
:adapter => "mysql2",
:host => "localhost",
:database…

ruby
- 63
- 1
- 9
0
votes
2 answers
How to retrieve attributes from has_one association without belongs_to?
I have several nested classes that look like so:
class Presentation < ActiveRecord::Base
has_many :campaign_records, :as => :campaignable
def campaign_records_text(joiner)
return '' if self.campaign_records.blank?
…

ianking
- 75
- 6
0
votes
1 answer
already initialized constant Bundler::Dsl::RAILS_VERSION_IS_3
type rails -v in a rails project (redmine 2.3)
the terminal logs :
(eval):9: warning: already initialized constant Bundler::Dsl::RAILS_VERSION_IS_3
(eval):9: warning: previous definition of RAILS_VERSION_IS_3 was here
Rails 3.2.13
type bundle…

colin
- 557
- 1
- 4
- 7
0
votes
1 answer
Redmine: How to get a value which is saved in mysql database, through a plugin
I need a value that I can read in the init.rb and also change it through the plugin settings on Redmine:
https://i.stack.imgur.com/eNPgw.png
https://i.stack.imgur.com/8nMAy.png
Here is my init.rb from the plugin:
require…

Neutromo
- 1
- 1
0
votes
2 answers
Does Redmine provide any graph report options
Does Redmine tool provide any plugin to generate graphs for the issues?
Like, i need to generate a pie or bar graph for no. of issues raised for current week/month etc. Can someone please help me with this?

Sharmila Joshi
- 15
- 2
- 8
0
votes
1 answer
Adding a tab to project/setting tab [Redmine]
I use this code to add a tab to project/setting tab in ProjectHelper module:
def project_settings_tabs
tabs = [{...},
.....,
{name: => 'polls', :action => :poll, :partial => '../.. /path_to_partial', :label => :poll }
]
…

DinhNgocHien
- 707
- 3
- 17
- 34
0
votes
1 answer
Explanation of tables of redmine database model
I looked at Redmine Database Model
http://www.redmine.org/projects/redmine/wiki/DatabaseModel
And didn't find explanation of any table.
I intuitively guess the purpose of the main tables such as "issues", "projects", "users", "trackes".
I checked…

discort
- 678
- 1
- 8
- 26