Giter Site home page Giter Site logo

Comments (8)

lfagundes avatar lfagundes commented on September 2, 2024

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

from agiledwarf.

markablov avatar markablov commented on September 2, 2024

Any logs?

from agiledwarf.

DuncanHills avatar DuncanHills commented on September 2, 2024

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

from agiledwarf.

markablov avatar markablov commented on September 2, 2024

please, check 4d14649

from agiledwarf.

askaaron avatar askaaron commented on September 2, 2024

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).

from agiledwarf.

rolfhsp avatar rolfhsp commented on September 2, 2024

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)

from agiledwarf.

aqwerf avatar aqwerf commented on September 2, 2024

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;

from agiledwarf.

alfonsonishikawa avatar alfonsonishikawa commented on September 2, 2024

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

from agiledwarf.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.