Forum Replies Created
-
Author
-
October 14, 2015 at 11:48 am in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76858
Oh yes !
Elementaire mon cher Watson
I can now finish my project. Know, it’s time to bash script ^^.
๐ thanks for all !!!
October 14, 2015 at 9:34 am in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76853Hello Vladimir.
I want open the calendar, wich is on jqxwindow, after click on “choisir une date”
After, when I click on a date, then, only at this moment, I want open the new page, with the generated link.So, if write, the calendar is open at the same time as the page. Then, when I click on a date, it open the new page “date.html” :
$("#jqxwindow").jqxWindow({ autoOpen: true
But, if the autoOpen is on false, it directly open today.html when I open the jqxWindow…
Regards
October 13, 2015 at 3:17 pm in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76802Oh… yes ! It was so obvious… Not for me, because i’m a beginner on html/javascript code…
I have a problem, but it looks it’s the last one ^^.
After clicking on “choisir une date” it directly open the new page today_date.html…
I tried to change the event from “change” to “viewChange” but the problem is the same.
October 13, 2015 at 12:51 pm in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76786Hello Vladimir, thanks for your answer.
So, I changed my code, and I add a ” ; “missing.
But, the I still have the same problem…
I used a HTML, and javascript validator, but no problem detected…// create jqxcalendar. $("#jqxWidget").jqxCalendar({width: 220, height: 220}); $('#jqxCalendar').on('change', function (event) { var date = $('#jqxCalendar').val(); var url = ("0" + date.getDate()).slice(-2) + '-' + ("0" + (date.getMonth()+1)).slice(-2) + '-' + date.getFull Year() + '.html'; // reload chart with generated url here window.location = url; });
October 12, 2015 at 2:51 pm in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76720Sorry, i can’t reply.
There is a little mistake on my last post :
But, at http://eosgallery.net/jq (at the bottom, after click on โchoisir une dateโ), when I click on a date, it doesnโt open the url.
October 12, 2015 at 2:38 pm in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76715Hello Vladimir,
Thanks for all your answers. I’m almost done ๐
I just have a little problem with calendar event, for opening my custom URL
So, at http://eosgallery.net/jq/calen.html my code seems working great…
But, at http://eosgallery.net/jq/calen.html (at the bottom, after click on “choisir une date”), when I click on a date, it doesn’t open the url.
Atm i’m still testing by changing the window.location= url; but still not working…
Thanks again for help ^^
October 8, 2015 at 8:49 am in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76556Hello,
If I can’t use jqxDateTimeInput, is there any where to generate a popup with the calendar ?
Thanks ๐
October 7, 2015 at 1:08 pm in reply to: Question about "dynamic" calendar Question about "dynamic" calendar #76534Hello Vladimir.
Thanks for your answer. It’s Working great !
For a best screen display i’m trying to generate a popup that open the calendar. So, I tried with jqxDateTimeInput , but my code is not working.
When I click on a date, there is no event…$(‘#jqxDateTimeInput’).on(‘change’, function (event) {
var date = $(‘#jqxDateTimeInput’).val();
var url = (“0” + date.getDate()).slice(-2) + ‘-‘ + (“0” + (date.getMonth()+1)).slice(-2) + ‘-‘ + date.getFullYear() + ‘.html’;
// reload chart with generated url here
window.location = url;
});October 1, 2015 at 2:31 pm in reply to: Add "0" to hour and minutes Add "0" to hour and minutes #76344YES ! I was looking for that for arround 4 days now. But i wanted ask again…
It’s working.
I just added a comma ^^Thanks for all, again :).
September 22, 2015 at 9:18 am in reply to: Date Format : Chart with range selector Date Format : Chart with range selector #76063I found my problem. I just had to change the “base unit” of my range selector from “day” to “hour”.
September 22, 2015 at 7:22 am in reply to: Reply To: Date Format : Chart with range selector Reply To: Date Format : Chart with range selector #76059Hi Peter !
I say : YES YES YES !!! It’s was so easy, and it’s finaly WORKING ! Thanks for all.
Now, I just have a little problem. The zoom doesn’t work properly for me. When I move the range selector, before datas, the line stay in the middle of the chart. But, when I move the range selector into datas, zoom is working.
If you know the problem, maybe you can help me. If you want to see code and other, you can have a look hereThanks again to the team ๐
September 21, 2015 at 11:47 am in reply to: Date Format : Chart with range selector Date Format : Chart with range selector #76041Hello Vladimir.
When I posted my last answer, I didn’t see your answer on September 18, 2015 at 9:02 am.
So, i confirm. It looks that Chrome reconize data, but IE or Firefox can’t.
So, I read the post, but I can’t find solution to resolve this…
Thanks
September 18, 2015 at 9:35 am in reply to: Date Format : Chart with range selector Date Format : Chart with range selector #75975Oh, it’s really strange.
One more time, you’re right. On my phone, it looks correct.
With all other charts, i see the line, but with this one, no. As you said, it’s a javascript object, and it’s possible that our proxy at work blocks such code…
I’ll have a look, still with firefox, but at home. It’s sad if I can’t see the line when I’m at work, but it’s only a little problemOne more time, I thank you for all ๐
September 18, 2015 at 8:02 am in reply to: Date Format : Chart with range selector Date Format : Chart with range selector #75967So, there is still a problem ^^.
The dates in range selector and the chart looks correct, but… I don’t have datas anymore in chart ^^.
It looks that the datas are being read in the CSV because the valueAxis changes according the data in the CSV…
example is still on the same link.
September 18, 2015 at 6:37 am in reply to: Date Format : Chart with range selector Date Format : Chart with range selector #75960Hi Vladimir !
It’s almost working ^^.
I’m looking for some hours now, but I don’t understand and solve this problem…
I think I understand the code you gave me, and for me, my data file is correct, but the chart has problem.
As you can see there, the date is 9/9/2015, but datas (here) begin at 2015-09-17 00:00 and finish at 2015-09-18 07:55
Line seems restart and “superimpose” (not sure if it’s the right word…) itself…
Any idea ?
Thanks again for all
-
AuthorPosts