-
-
Notifications
You must be signed in to change notification settings - Fork 43
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
test.js:3 Uncaught TypeError: $(...).timeline is not a function #94
Comments
Hi there, $("#myTimeline").timeline('show');// <- ng
$("#myTimeline").Timeline('show');// <- ok Thank you. |
Thank you for your quick response :) I would like to take this opportunity to ask you if it is possible to recover the JS configuration from your demo timeline? I cannot display the same rendering: https://ka2.org/jqtl-v2/ I of course took the time to consult your documentation |
I modified tester page. |
Very CRAZYYY ! Thanks a lot Last answer pleaseee... I'm surprised to see that you didn't use the hookEventColors attribute in the colorScheme object |
We can specify a color for each event node, so on the tester page, the color is specified on the event node side. [{
"uid": "18b51549b763c",
"eventId": 1,
"x": 2840.27,
"y": 51,
"width": 70.5,
"height": 44,
"start": "2023-12-18 04:08",
"end": "2023-12-19 15:23",
"row": 2,
"bgColor": "#c1aa30",
"color": "#101010",
"bdColor": "#6C757D",
"label": "Ut lacinia metus Nam ut Lorem Ut lacinia",
"content": "Nunc ...",
"category": "",
"image": "",
"margin": 2,
"rangeMeta": "",
"size": "normal",
"type": "",
"extend": {},
"remote": false,
"relation": {}
},
...
] The event node data that is randomly generated on the tester page is cached in the session storage, so you can check the contents of the "div#my-timeline" key in the session storage using the browser's dev tools (press "F12" key). Best regards. |
Describe the bug
<title>Calendrier à Chronologie Horizontale</title>I have the error 👍
test.js:3 Uncaught TypeError: $(...).timeline is not a function
To Reproduce
Steps to reproduce the behavior:
Html :
JS
$(window).on("load", function() {
$("#myTimeline").timeline('show');
});
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: