Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot set sprint start/end dates #18

Open
DuncanHills opened this issue Aug 7, 2012 · 8 comments
Open

Cannot set sprint start/end dates #18

DuncanHills opened this issue Aug 7, 2012 · 8 comments

Comments

@DuncanHills
Copy link

I can't seem to set start or end dates for sprints. Editing in-place has no effect, it just leaves the [start date]/[end date] value. Other in-place edits are not working either, but I think there is a separate issue for that. This impacts the burndown chart and essentially renders it useless.

Environment:
Redmine version 2.0.3.stable
Ruby version 1.9.3 (i686-linux)
Rails version 3.2.6
Environment production
Database adapter Mysql2
Redmine plugins:
AgileDwarf 0.0.3

@lfagundes
Copy link

I have the same issue, with latest git revision (d223f9)

Environment:
Redmine version 2.0.1.stable
Ruby version 1.9.3 (x86_64-linux)
Rails version 3.2.3
Environment production
Database adapter Mysql2
Redmine plugins:
AgileDwarf 0.0.3
redmine_code_review 0.5.0

@markablov
Copy link
Contributor

Any logs?

@DuncanHills
Copy link
Author

This can probably be rolled up into Issue #12. Logs here: #12 (comment)

markablov added a commit that referenced this issue Aug 14, 2012
@markablov
Copy link
Contributor

please, check 4d14649

@askaaron
Copy link

The same here with Redmine 1.4.3 stable using MySQL running in Ubuntu 12.05 LTS and AgileDwarf 0.0.3 (just downloaded that yesterday).

@rolfhsp
Copy link

rolfhsp commented Aug 31, 2012

The [Start Date] and [End Date] placeholders just disappears when clicking on them.
The browser reports an error in the jquery.jeditable.datepicker.js on line 27: "Cannot call method 'attr' of null".

Running on Windows, with Rails v3.2.6 and Redmine 2.0.3.
AgileDwarf is latest commit (2cc0118)

@aqwerf
Copy link

aqwerf commented Sep 12, 2012

I have a same promblem with Redmine 1.4.3 stable in Ubuntu 12.04.1 LTS.
AgileDwarf is latest commit ( 2cc0118 ).

I am not familiar with javascript, and I am not sure my patch is correct.
But after that I can see datapicker and select date.

I would like to know why my Redmine is problem with this line: "input = $( '' )"
(input value is null).

--- a/assets/javascripts/libs/jquery.jeditable.datepicker.js
+++ b/assets/javascripts/libs/jquery.jeditable.datepicker.js
@@ -22,8 +22,9 @@ $.editable.addInputType( 'datepicker', {

     /* create input element */
    element: function( settings, original ) {
-      var form = $( this ),
-          input = $( '<input />' );
+      var form = $( this );
+      form.html( "<input />" );
+      var input = form.find( "input" );
       input.attr( 'autocomplete','off' );
-      form.append( input );
       return input;

@alfonsonishikawa
Copy link

Same problem like @rolfhsp and @aqwerf with 2cc0118. Redmine 1.3.2, Ruby 1.8.7, AgileDwarf 0.0.3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants