vue-form-generator icon indicating copy to clipboard operation
vue-form-generator copied to clipboard

DateTimePicker obsolete

Open nicodmf opened this issue 6 years ago • 6 comments

  • I'm submitting a ...

    • [X ] bug report
    • [ ] feature request
    • [ ] support request
  • What is the current behavior?

The datepicker module used is obsolete : https://github.com/Eonasdan/bootstrap-datetimepicker

  • What is the expected behavior?

A followed library

nicodmf avatar Nov 13 '18 23:11 nicodmf

I don’t understand?

zoul0813 avatar Nov 14 '18 00:11 zoul0813

Due to a lack of follow up, I'm closing this issue.

zoul0813 avatar Dec 10 '18 15:12 zoul0813

@zoul0813 Sorry, i wrote this too quickly, i think the DateTimePicker lib is obsolete (bootstrap 3 not 4, message on home page ) and should be replaced by another.

nicodmf avatar Feb 23 '19 15:02 nicodmf

Yep, that causes problems when we're already using bootstrap 4 in our project. In this component specifically (and maybe others) use the glyphicon, and that makes the buttons/icons disappear, turning them not clickable. The problem occurs because in the v4 they dropped the glyph icons.

malarahfelipe avatar Apr 04 '20 20:04 malarahfelipe

Solved this way> In package.json "dependencies": { "bootstrap": "^4.4.1", "bootstrap-v3": "https://github.com/twbs/bootstrap/archive/v3.3.7.tar.gz" }

And then in the component that uses vue-form-generator: import 'bootstrap-v3/dist/css/bootstrap.css' import 'bootstrap-v3/dist/js/bootstrap.js'

malarahfelipe avatar Apr 04 '20 22:04 malarahfelipe

Solved this way> In package.json "dependencies": { "bootstrap": "^4.4.1", "bootstrap-v3": "https://github.com/twbs/bootstrap/archive/v3.3.7.tar.gz" }

And then in the component that uses vue-form-generator: import 'bootstrap-v3/dist/css/bootstrap.css' import 'bootstrap-v3/dist/js/bootstrap.js'

Doesn't work for me 😕

tirta-keniten avatar Jul 14 '20 03:07 tirta-keniten