Telerik Forums
UI for PHP Forum
1 answer
61 views

Hi.

I want to remove the "All day event" and "Repeat" from the event creation/modification, but I'm not able to do it.

If I remove the variables from the examples I end up getting some error messages.

 

Can you tell me if this is achievable?

 

Thank you in advance.

Veselin Tsvetanov
Telerik team
 answered on 01 Aug 2018
5 answers
176 views
I am in need of quarterly and yearly views for my current Scheduler project.  Has anyone created a quarterly timeline view for the PHP UI?  Can you provide an example?
Veselin Tsvetanov
Telerik team
 answered on 09 Feb 2018
1 answer
111 views

Hello I'm David. I have a problem with scheduler. I have a web service json with the following information.

[{"id":"1","start":"2016\/05\/20 08:00 AM","end":"2016\/05\/20 08:00 AM","isAllDay":true,"title":"PRUEBA DIGITALIZACION","description":"C000001"},{"id":"2","start":"2016\/05\/20 08:00 AM","end":"2016\/05\/20 08:00 AM","isAllDay":true,"title":"uno","description":"C000002"},{"id":"3","start":"2016\/05\/20 08:00 AM","end":"2016\/05\/20 08:00 AM","isAllDay":true,"title":"uno","description":"C000003"}]

and do not know how to put it into my schedule scheduler on the corresponding dates . Deputy code if anyone can help me please.

 

// agenda.php
<html>
    <head>
        <meta charset="utf-8">
        <link href="../../system/telerik/content/shared/styles/examples-offline.css" rel="stylesheet" type="text/css"/>
        <link href="../../system/telerik/styles/kendo.common.min.css" rel="stylesheet" type="text/css"/>
        <link href="../../system/telerik/styles/kendo.rtl.min.css" rel="stylesheet" type="text/css"/>
        <link href="../../system/telerik/styles/kendo.default.min.css" rel="stylesheet" type="text/css"/>
        <link href="../../system/telerik/styles/kendo.dataviz.min.css" rel="stylesheet" type="text/css"/>
        <link href="../../system/telerik/styles/kendo.dataviz.default.min.css" rel="stylesheet" type="text/css"/>


        <script src="../../system/telerik/js/jquery.min.js" type="text/javascript"></script>
        <script src="../../system/telerik/js/jszip.min.js" type="text/javascript"></script>
        <script src="../../system/telerik/js/kendo.all.min.js" type="text/javascript"></script>
        <script src="../../system/telerik/content/shared/js/console.js" type="text/javascript"></script>
        <script>

        </script>
    </head>
    <body>
        <div id="example" class="k-content">

            <!--[if gte IE 9]>-->
            <div id="team-schedule">
                <div id="people">
                    <input checked type="checkbox" id="alex" value="1">
                    <input checked type="checkbox" id="bob" value="2">
                    <input type="checkbox" id="charlie" value="3">
                </div>
            </div>
            <div id="scheduler"></div>
            <script src="../../system/telerik/content/shared/js/everlive.all.js"  type="text/javascript"></script>
            <script>
                    // initialize Backend Services (Everlive) application with application API key
                    var dataSource = new kendo.data.SchedulerDataSource({
                    transport: {
                    read: {                   
                    url: "service.php",// my web service
                            dataType: "jsonp"
                    }  }      });
              $("#scheduler").kendoScheduler({
            date: new Date("2016/05/20"),
                    views: ["day", "month"],
                    dataSource: [
                        { id: 1,
                            start: new Date("2016/05/20 08:00 AM"),
                            end: new Date("2016/05/20 09:00 AM"),
                            isAllDay: true,
                            title: "hola jorge",
                            description: "lo que sea"
                    } ],
                    edit: function (e) {
                    console.log("Editing", e.event.title);
                    }
            });
            </script>

        </div>

        <style>
            .k-nav-current > .k-link span + span {
                max-width: 200px;
                display: inline-block;
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
                vertical-align: top;
            }

            #team-schedule {
                background: url('../../system/telerik/content/web/scheduler/team-schedule.png') transparent no-repeat;
                height: 115px;
                position: relative;
            }

            #people {
                background: url('../../system/telerik/content/web/scheduler/scheduler-people.png') no-repeat;
                width: 345px;
                height: 115px;
                position: absolute;
                right: 0;
            }

            #alex {
                position: absolute;
                left: 4px;
                top: 81px;
            }
            #bob {
                position: absolute;
                left: 119px;
                top: 81px;
            }
            #charlie {
                position: absolute;
                left: 234px;
                top: 81px;
            }
        </style>
    </body>
</html>
// end agenda.php

 

 

 

 

 

//start service.php

<?php
include("clase_principal.php");
$frame = new frames();
$query = "SELECT doc_documentos_id,fecha_creacion,fecha_creacion, "
        . "titulo,codigo_documento FROM "
        . "doc_documentos limit 3";
$matriz_documentos = $db_obj->ejecutar_consulta($query);
foreach ($matriz_documentos as $registro) {
    $tmpMatriz = Array(
        "id" => $registro[0],
        "start" => "2016-05-20 09:00:00",
        "end" =>"2016-05-20 09:00:00",
        "isAllDay" => true,
        "title" => $registro[3],
        "description" => $registro[4]
    );
    $retorno[] = $tmpMatriz;
}
$Json_telerik = json_encode($retorno);
echo $Json_telerik;
 

 

 

Vladimir Iliev
Telerik team
 answered on 24 May 2016
1 answer
52 views
Hi,

Can you please tell me how do i call my event scheduler on ajax call? can we regenerate scheduler on Ajax call basis?

Please reply ASAP.
Vladimir Iliev
Telerik team
 answered on 28 Nov 2014
1 answer
63 views
Hello,
I found a bug in the code. If the schedular is even one task whose subject is a numerical example: "1234" then nothing is displayed and get an error Kendo.All.
If the subject "1234" line such as: "1234" is operating normally.
Vladimir Iliev
Telerik team
 answered on 03 Apr 2014
4 answers
200 views
Hi,

i'm trying your product.
I'm playing with the scheduler, and how can i change culture of it ?

Thx
Pascal
Top achievements
Rank 1
 answered on 12 Nov 2013
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?