Topic: New plugin in progress (Events calendar)

I happened to create a calendar of events and there is none for now
you can see here

user: demo
pass: demo

I've used these plugins:

  • jquery.dataTables.js for filters data

  • FullCalendar v1.5.4

  • Apprise for modals

  • Timepicker v0.1.0

  • bootstrap-datepicker.js

  • jNotify jQuery Plug-in

I only need to fix bugs and create the translation

what you think?

..::: Moncho Varela ::::..   ..::: @Nakome ::::..   ..::: Github ::::..

nakome's Website

Re: New plugin in progress (Events calendar)

Now in github

..::: Moncho Varela ::::..   ..::: @Nakome ::::..   ..::: Github ::::..

nakome's Website

Re: New plugin in progress (Events calendar)

wow cool, look like in my iphone big_smile i mean the way it works

(с) Roman Art
So far So good wink

RomanArt's Website

Re: New plugin in progress (Events calendar)

Looks good, any news about this plugin ?)

Monstra Loves You! Give some love back!

Re: New plugin in progress (Events calendar)

Only rest write of  the translation and fix  up the preview window in first event on backend, (only work for more than one event).
I think the problem is that I add parseInt, in event id

        function viewModal(id){
            $.getJSON("../public/api/api.json",function(data){
                $.each(data.kalendar,function(i,item){
                    if(item.id == id){ //
                        var html = apprise("<h3>"+ item.title + "</h3>" +
                                "<p><b><?php echo __('Info','kalendar');?>: </b>" + item.content + "</p>" +
                                "<p><b><?php echo __('Address','kalendar');?>: </b>" + item.address + "</p>" +
                                "<p><b><?php echo __('Hour','kalendar');?>: </b>" + item.time + "</p>",
                                {
                                "animate" : 800,
                                "textOk" : "<?php echo __('Close','kalendar'); ?>"});
                        return html;
                    }
                });
            });
        }
        // i call with onclick="return viewModal(<?php echo $row['id']; ?>)">
..::: Moncho Varela ::::..   ..::: @Nakome ::::..   ..::: Github ::::..

nakome's Website