Create a React Scheduler Using the Create React App

แชร์
ฝัง
  • เผยแพร่เมื่อ 9 ก.ย. 2024
  • Learn how easily you can create and configure the React Scheduler of Syncfusion using the create react app command. In this video, you will learn to create an application with the help of the create react app tool. You will learn how to add appointments to the React Scheduler either as local JSON data or remote service URLs as well as how to change the default date and view in React Scheduler.
    GitHub example: github.com/Syn...
    Documentation: ej2.syncfusion...
    REACT SCHEDULER
    ---------------------
    Product overview: bit.ly/2lKnqxY
    Examples: bit.ly/2kvpkCu
    Documentation: bit.ly/2kfXU3l
    Download free trial: bit.ly/2kwMKr9
    GitHub source: bit.ly/2mbOC95
    npmjs package: bit.ly/2ksLW6B
    SUBSCRIBE
    --------------
    Syncfusion on TH-cam: bit.ly/syncfusi...
    Sign up to receive email updates: bit.ly/syncfusi...
    SOCIAL COMMUNITY
    -----------------------------
    Facebook: / syncfusion
    Twitter: / syncfusion
    LinkedIn: / syncfusion
    #reactcalendar #eventcalendar #reactscheduler

ความคิดเห็น • 136

  • @rininrin
    @rininrin 4 ปีที่แล้ว +9

    This was very interesting and informational! You explained this all super well, thanks for uploading this quick tutorial!

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว +1

      Thanks, we're glad you found this video helpful!

  • @elliottarnold9542
    @elliottarnold9542 3 ปีที่แล้ว +1

    Excellent. Thank you for making this video

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Thanks, we're happy to hear you found it useful!

  • @werghiaziz2943
    @werghiaziz2943 5 หลายเดือนก่อน

    thank you
    i am learning for my project

  • @criszamarco2186
    @criszamarco2186 4 ปีที่แล้ว +1

    Amazing! thank you so much.

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      You're very welcome! Glad it was helpful.

  • @joeydikgole6005
    @joeydikgole6005 3 ปีที่แล้ว +1

    Awesome. Thank you

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Thank you, we are glad to hear you found this video helpful!

  • @medAmineRg
    @medAmineRg 2 ปีที่แล้ว

    thats was helpful thankyou

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello MohamedAmine,
      We are glad that you have found it helpful.

  • @iuliancalin4341
    @iuliancalin4341 3 ปีที่แล้ว +3

    Hey , I do the same steps but i don`t get the tsx file i still get Js.
    Any ideeas how to work on that?
    Thanks,

    • @laxmanbista3195
      @laxmanbista3195 3 ปีที่แล้ว

      yep same here

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Please refer to the sample with tsx file which can be downloaded from the following link.
      Sample: www.syncfusion.com/downloads/support/directtrac/311013/ze/Sample27007254
      UG link: ej2.syncfusion.com/react/documentation/schedule/

  • @danishali_official
    @danishali_official 4 ปีที่แล้ว +1

    thank you

  • @judithcopeland4419
    @judithcopeland4419 4 ปีที่แล้ว +1

    Thank you!

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      Thank you, we're glad this was helpful!

  • @paarthgarg1030
    @paarthgarg1030 3 ปีที่แล้ว +3

    Hi, Thanks for the video. It's really amazing and easy to implement. However, I have a question. Let's say I create an event and at the bottom, I have a SAVE button to save this event. Will I get a JSON object of the event which I can pass to my backend API so that if I want to retrieve all my events, I can make a GET API call from my back end and populate the calendar with the events. Or if I have to show this availability on the consumer's side so that the consumer can book the available time slot, can I achieve this functionality. Any help on this will be greatly appreciated.

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Please refer to this CRUD sample and it can be downloaded from the following link.
      Service: www.syncfusion.com/downloads/support/directtrac/297499/ze/Service-1448454057
      Sample: stackblitz.com/edit/react-xebzed?file=index.js
      this.dataManger = new DataManager({
      url: "localhost:54738/Home/LoadData", // Here need to mention the web api sample running path
      crudUrl: "localhost:54738/Home/UpdateData",
      crossDomain: true,
      adaptor: new UrlAdaptor()
      });
      Kindly refer to the below UG link,
      ej2.syncfusion.com/react/documentation/schedule/data-binding/#scheduler-crud-actions

  • @charleslwanga7839
    @charleslwanga7839 3 ปีที่แล้ว

    Thank you @Sycfusion, Inc. You have saved my energy.
    But how can I add email notifications for the events

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว +1

      We have prepared a sample using created event of the Scheduler and in that, we have set notifications for the Scheduler events using Toaster component and it can be viewed from the following link.
      Sample: stackblitz.com/edit/react-scheduler-event-notification-in-toaster?file=index.js
      Code Snippet:
      onCreated() {
      window.setInterval(function() {
      var scheduleObj = document.querySelector(".e-schedule").ej2_instances[0];
      var eventCollection = scheduleObj.getCurrentViewEvents();
      eventCollection.forEach((event, i) => {
      var dateFormat = date =>
      new Date(
      date.getFullYear(),
      date.getMonth(),
      date.getDate(),
      date.getHours(),
      date.getMinutes()
      );
      var alertBeforeMinutes = 5;
      var startTime = dateFormat(event[scheduleObj.eventFields.startTime]);
      var currentTime = dateFormat(new Date());
      if (
      currentTime.getTime() ===
      startTime.getTime() - 1000 * 60 * alertBeforeMinutes
      ) {
      var toastObjReminder = document.querySelector(".e-toast")
      .ej2_instances[0];
      toastObjReminder.show();
      }
      });
      }, 60000);
      }

  • @srinicnu5283
    @srinicnu5283 5 หลายเดือนก่อน

    How to edit the popup (when i create an event)
    Cause i want to add a autocomplete field inside the popup & according to entered data i want to automatically set the time duration

    • @SyncfusionInc
      @SyncfusionInc  5 หลายเดือนก่อน

      Hi,
      You can add additional fields, such as autocomplete, to the schedule popup using the schedule popupOpen event (ej2.syncfusion.com/react/documentation/api/schedule#popupopen). By utilizing the autocomplete select event (ej2.syncfusion.com/react/documentation/api/auto-complete/#select), you can customize the time duration according to your requirements. The attached code snippet and sample demonstration solution are provided below. Please try the solution and let us know if you need any further assistance.
      Sample: stackblitz.com/edit/schedule-additonal-field-jq5ay5?file=index.js,datasource.json
      const onPopupOpen = (args) => {
      if (args.type === 'Editor') {
      // Create required custom elements in initial time
      if (!args.element.querySelector('.custom-field-row')) {
      let row = createElement('div', { className: 'custom-field-row' });
      let formElement = args.element.querySelector('.e-schedule-form');
      formElement.firstChild.insertBefore(
      row,
      formElement.firstChild.firstChild
      );
      let container = createElement('div', {
      className: 'custom-field-container',
      });
      let inputEle = createElement('input');
      container.appendChild(inputEle);
      row.appendChild(container);
      let scheduleDuration;
      let changedValue;
      let durationEndTime = new Date(args.data.EndTime);
      let datePickerInstance = args.element.querySelector('.e-end').ej2_instances[0];
      if(args.target.classList.contains('e-appointment')) {
      var startTime = new Date(args.data.StartTime);
      var endTime = new Date(args.data.EndTime);
      var difference = endTime - startTime;
      var differenceInMinutes = difference / 1000 / 60;
      scheduleDuration = differenceInMinutes
      } else {
      scheduleDuration = scheduleObj.current.timeScale.interval/scheduleObj.current.timeScale.slotCount
      }
      let autoCompleteList = new AutoComplete({
      dataSource: [ '30','60','120','180'],
      value: scheduleDuration.toString() ,
      select: function(args) {
      changedValue = parseInt(args.itemData.value, 10); // Parse the value to integer
      let endTime = new Date(durationEndTime);
      endTime.setMinutes(endTime.getMinutes() + changedValue); // Add the changedValue to the end time
      datePickerInstance.value = endTime;
      }
      });
      autoCompleteList.appendTo(inputEle);
      }
      }
      };

  • @sudhan.ssudhan6741
    @sudhan.ssudhan6741 4 หลายเดือนก่อน

    The code you return is in Type script if it is in react js it will be easy for most of us to understand the code. Please can you provide react js code

    • @SyncfusionInc
      @SyncfusionInc  4 หลายเดือนก่อน

      Hi,
      Sample: stackblitz.com/edit/react-yavzme-yeah45?file=index.js
      Based on your query, we've prepared a sample in React.js. Kindly try the provided sample. In the meantime, we'd also like to inform you that you can create a React scheduler in JavaScript instead of TypeScript environment by using the below command without the TypeScript template (create-react-app my-app --template typescript).
      create-react-app my-app
      UG: ej2.syncfusion.com/react/documentation/schedule/getting-started#setup-for-local-development

  • @naveenbabu7517
    @naveenbabu7517 3 ปีที่แล้ว

    can any one tell me, whether syncfusion scheduler component code is open source to use in my react application ?

  • @hypermeero4782
    @hypermeero4782 2 ปีที่แล้ว

    how can i make the user books an appointment and actually store it. it disappears every time i refresh the page

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello,
      Thank you for reaching out to us. To store the appointments in the database on CRUD actions, you can use datamanager. Refer to the following links for more details,
      www.syncfusion.com/forums/157251/how-to-perform-crud-operations-using-backend-api-in-react-scheduler
      ej2.syncfusion.com/react/documentation/schedule/data-binding/#scheduler-crud-actions

  • @nhannguyenhuu1287
    @nhannguyenhuu1287 3 ปีที่แล้ว

    Hi, Can you help me how i can custom a checkbox in selected range hour which i selected. i want to make a vote in hour picker. Thank you!

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hi Nhân Nguyễn Hữu,
      For the fastest response to technical questions, we recommend using the support chat on our website or opening a ticket.
      www.syncfusion.com/support/directtrac/incidents/newincident
      We will check on this with our team and post a response but it will take a little time.
      Thanks for your question!

  • @RonanThomas
    @RonanThomas 4 ปีที่แล้ว

    Hi, do you have a video showing how you actually display this schedule on a specific page of a website?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      Currently, we have an online demo that illustrates the different ways to customize the scheduler, so kindly refer to the below online demo and UG links for more details.
      Online Demo: ej2.syncfusion.com/react/demos/#/material/schedule/default
      UG: ej2.syncfusion.com/react/documentation/schedule/getting-started/

  • @eshansyoutube
    @eshansyoutube 2 ปีที่แล้ว

    When I add some event how to log it in console or keep track of it some how. So that I can send it to database.

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello Eshan,
      Thank you for reaching out. You can use actionBegin event which will trigger when you add, edit, or delete the events.
      ej2.syncfusion.com/react/documentation/api/schedule/#actionbegin.

  • @srinicnu5283
    @srinicnu5283 5 หลายเดือนก่อน

    How can we store the events created by user directly to my localhost or database ?

    • @SyncfusionInc
      @SyncfusionInc  5 หลายเดือนก่อน

      Hi,
      To store data from your scheduler into a database or localhost, you can leverage the DataManager (ej2.syncfusion.com/react/documentation/data/getting-started) provided by our library.
      This tool facilitates CRUD (Create, Read, Update, Delete) operations with your data source.
      For a detailed guide on how to perform these operations, please refer to our official documentation: ej2.syncfusion.com/react/documentation/schedule/data-binding#scheduler-crud-actions
      To specifically understand how to insert events into a database at the server-side, you can refer to this section of our documentation: ej2.syncfusion.com/react/documentation/schedule/crud-actions#inserting-events-into-database-at-server-side

  • @saurabh250609
    @saurabh250609 3 ปีที่แล้ว

    working wonderfully !! But when I adding the appointment data in JSON or Remote, it giving compile error for variable "localData" or remoteData. Any solution

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว +1

      We have prepared sample with local data and ensured that the events are properly rendering without any script errors and also while performing CRUD actions. And the sample can be viewed from the following link.
      Sample: stackblitz.com/edit/react-default-schedule-sample?file=index.js
      UG link: ej2.syncfusion.com/react/documentation/schedule/data-binding/

  • @Mosesibe
    @Mosesibe 4 ปีที่แล้ว +3

    Hi Thanks for this video, but how do we use the EventSettingsModel on React on JS not TS?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว +2

      The EventSettingsModel is an interface which can be used only on the TS files and not on JS. It is used to define an object of type "EventSettingsModel" and assign it to the "eventSettings" property of Scheduler. In case of JS, this "eventSettings" property will simply accept the plain object type values with appropriate scheduler sub-property values. To know how to define the sub-properties of eventSettings, you can refer the code example under this topic: ej2.syncfusion.com/react/documentation/schedule/appointments/?#binding-different-field-names

  • @AbhinandanMishra1
    @AbhinandanMishra1 3 ปีที่แล้ว +1

    npm install @syncfusion/ej2-react-schedule --save
    not working .
    I wait for 30 minutes but download nahi hua ]

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว +1

      Hello Abhinandan,
      We can look into this and get back to you but response times via our TH-cam videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident

    • @AbhinandanMishra1
      @AbhinandanMishra1 3 ปีที่แล้ว

      @@SyncfusionInc Thanks for response.

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hi Abhinandan,
      We are happy to help.

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      We suspect that the issue might be due to improper internet connection or due to NPM and nodejs versions. Please ensure your network connection and share NPM and NodeJS versions to validate the problem. Also, we have shared the following sample prepared with the steps shared in the video which works properly at our end.

      Sample: www.syncfusion.com/downloads/support/directtrac/general/ze/ScheduleComponent2103839489

  • @thasams
    @thasams 4 ปีที่แล้ว

    How to use either an external json file or a data from mysql database for the scheduling source? Thank you

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      Please check the server-side CRUD handling code example from here: ej2.syncfusion.com/react/documentation/schedule/data-binding/#scheduler-crud-actions.
      In case, if you want to bind the data from a remote service, refer here: ej2.syncfusion.com/react/documentation/schedule/data-binding/#binding-remote-data
      A simple way of binding data from a local JSON file to the React Scheduler can be referred from this GitHub link: github.com/SyncfusionExamples/getting-started-with-the-react-scheduler
      Kindly revert us, if you have any other queries.

  • @mukeshm7659
    @mukeshm7659 3 ปีที่แล้ว

    hello i need help
    i want to remove WEEKDAY AGENDA and DAY from title bar how can i
    and plz quick

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว +1

      Hi Mukesh,
      Thank you for watching our video.
      By default, we have a day, week view, week view, month view and agenda view in scheduler. You can customize it by using ViewsDirective. You can refer to the following link,
      ej2.syncfusion.com/react/documentation/schedule/views/#month-view

  • @imsenior67
    @imsenior67 3 ปีที่แล้ว

    $995 and are good to go for first year, looks amazing anyway

  • @joniroxanne96
    @joniroxanne96 3 ปีที่แล้ว

    Can you add and remove (and edit) events in this calendar?
    I need it for a project (JavaScript + React.JS)...

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Yes, you can add/edit/remove events in the Scheduler. For that, we have prepared a sample in the ReactJS (JavaScript + ReactJS) platform, which can be viewed from the following link.
      Sample: stackblitz.com/edit/react-default-schedule-sample?file=index.js
      UG link: ej2.syncfusion.com/react/documentation/schedule/

  • @kaorikohama3599
    @kaorikohama3599 4 ปีที่แล้ว

    I want to display two calendars on same page, but If I add two schedule components, it breaks. Is there any way to do this?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      Unfortunately, we are not able to replicate any breaking issue while add two schedule components.
      Kindly check the below sample link to add two schedule components
      stackblitz.com/edit/react-wv4k5p-cgec2w?file=index.js

  • @vamsimunukoti4857
    @vamsimunukoti4857 4 ปีที่แล้ว

    i cannot find the css module in the github code. where is th3 css module ?(or that link which you used in index.js file)

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      You can refer the CSS styles to the ej2 react scheduler in two ways.
      Using local CSS style sheets
      Refer to the below link for how to add the CSS styles from the local files for ej2 react schedule.
      UG(Adding CSS reference): ej2.syncfusion.com/react/documentation/schedule/getting-started/#adding-css-reference

      Using CDN links
      Refer to the below link for how to use the CDN links with the ej2 react components.
      UG(CDN): ej2.syncfusion.com/react/documentation/deployment/#cdn
      We have prepared a sample for your reference with the CDN style link like the below.


      Syncfusion React Sample





      Sample: stackblitz.com/edit/react-edb4rc?file=index.html

  • @din9019291297
    @din9019291297 4 ปีที่แล้ว +1

    ncie One

  • @algouverjulio
    @algouverjulio 3 ปีที่แล้ว

    Can I ask you question? Can I translate this application to Portuguese-BR ?
    And how i can put the data on my database/localhost API?

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      You can use the locale property of the Schedule as “pt” to translate the application to Portuguese-BR. Please refer to the below sample.
      Sample: stackblitz.com/edit/ej2-react-schedule-with-pt-locale-sample?file=index.js
      UG(Schedule globalization): ej2.syncfusion.com/react/documenta
      Also please refer to the below UG link to bind remote data with the Schedule.
      UG(Binding data with Schedule): ej2.syncfusion.com/react/documentation/schedule/data-binding/#binding-remote-data

  • @eby1
    @eby1 4 ปีที่แล้ว

    How do I add the scheduler to an already existing project

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว +1

      You can add the scheduler component in the existing project by following the below steps.
      1.Add the Syncfusion Package in the project. Please refer this link (ej2.syncfusion.com/react/documentation/schedule/getting-started)
      2.Add the CSS references.
      3.Inject the module in your project
      4.Initialize the Scheduler component

  • @hallex1081
    @hallex1081 3 ปีที่แล้ว

    Is there any tutorial about this scheduler but based on the hooks and not classes?

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hi Халекс [Hallex],
      For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident
      If you have a retail or flat license, you also have access to our support chat.
      We will check on this with our team and post a response but it will take a little time.
      Thanks for your question!

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      There is no tutorial about schedulers based on Hooks now.
      So we have prepared a simple scheduler quick info sample (ej2.syncfusion.com/react/documentation/schedule/editor-template/#customizing-quick-popups) using React functional components, which can be downloaded, from the following link.
      Sample: www.syncfusion.com/downloads/support/directtrac/339422/ze/ej2-scheduler-with-react-functional-components302738835

  • @shirdharparit5720
    @shirdharparit5720 2 ปีที่แล้ว

    Can we use javascript with syncfusion.
    Or typescript is compulsory ?

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว +1

      Hi Shirdhar,
      Thank you for reaching out. You can use Javascript.

  • @facundocalle7686
    @facundocalle7686 4 ปีที่แล้ว

    The options in header dissapear, when i click in agend later click in day the options move to the rigth, finally all options dissapear... i dont know why, the only answer is set my browser to zoom 90%.

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      Unfortunately, we are not able to replicate the problem. So, kindly furnish some more details about your problem?

  • @awekeningbro1207
    @awekeningbro1207 4 ปีที่แล้ว

    how to do this without the third-party module for scheduler?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      It is not necessary to install any third-party modules to render the Scheduler. You can use our Syncfusion packages alone. Installing our Syncfusion packages is enough to render the Syncfusion React Scheduler.
      For more reference, you can refer this below sample.
      Sample: www.syncfusion.com/downloads/support/directtrac/288427/ze/ej2-react-schedule-getting-started-sample-927162493

  • @user-xm7fy8df4q
    @user-xm7fy8df4q 3 ปีที่แล้ว

    hello, tell me how to make a live update of events on other clients?

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      We have prepared a sample using SignalR WS service and in that we can able to maintain the live updates between the different users without refreshing the browser/Scheduler and the sample can be downloaded from the following link.
      Service: www.syncfusion.com/downloads/support/forum/161378/ze/Service-645969535
      Sample: www.syncfusion.com/downloads/support/forum/161378/ze/sample-420961440
      Code Snippet:
      public componentDidMount() {
      this.signalr = new HubConnectionBuilder().withUrl("localhost:62869/hubs/schedulehub").withAutomaticReconnect().build();
      this.signalr.on("UpdateClient", (action: string, data: View | Object[]) => {
      if (action == "view") {
      this.scheduleObj.currentView = data as View;
      }
      if (action === "eventCreated" || action === "eventChanged" || action === "eventRemoved") {
      this.scheduleObj.eventSettings.dataSource = data as Object[];
      }
      });
      this.signalr.start().then(() => { console.log("Hub Connected..!"); }).catch((err: any) => { console.log(err); });
      }
      public componentWillUnmount(): void {
      this.signalr.stop().then(() => { console.log("Hub Disconnected.."); }).catch((err: any) => { console.log(err); });
      }

  • @mehdi72753
    @mehdi72753 2 ปีที่แล้ว

    Please, how can i link this to mongodb for when i add an event it passes to the database so its stored there not locally, that is so when i access the app again i find the events i put earlier ??

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello,
      We can look into this and get back to you but response times via our TH-cam videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident
      If you have a retail or flat license, you also have access to our support chat.

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Please refer to this forum for the solution
      www.syncfusion.com/forums/150433/how-to-use-nodejs-postgresql-mysql-to-crud-schedules?reply=NfZXOI
      www.syncfusion.com/forums/157730/crud-events-with-express-js
      Also, you can find the sample from the below GitHub repository.
      github.com/SyncfusionExamples/ej2-react-scheduler-with-mongodb

  • @dsl2914
    @dsl2914 3 ปีที่แล้ว

    can the examples be updated to functions instead of class

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Please refer to the sample using Functions instead of Class component in React platform, which can be viewed from the following link.
      Sample: stackblitz.com/edit/react-functional-schedule-component?file=index.js
      Referred link: reactjs.org/docs/components-and-props.html#function-and-class-components

  • @anisndeyan1887
    @anisndeyan1887 6 หลายเดือนก่อน

    Is this component free to use? Or I need to buy license?

    • @SyncfusionInc
      @SyncfusionInc  6 หลายเดือนก่อน

      Hello @anisndeyan1887,
      Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 million USD in annual revenue.
      bit.ly/395t17c

  • @KundanKumar-uj2in
    @KundanKumar-uj2in 2 ปีที่แล้ว

    How can I do it with react jsx function component

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hi Kundan,
      Thank you for reaching out to us. You can refer to the following sample for your requirement,
      stackblitz.com/edit/ej2-react-functional-schedule-with-editor-template-sample?file=index.js.

  • @user-gu3kj6gy8q
    @user-gu3kj6gy8q 4 ปีที่แล้ว

    Can I ask you question? Can I translate this application on Russian for example?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      Yes. We can translate the Scheduler to Russian culture by making use of locale property of the scheduler. Please follow the steps from the below UG link to translate the Scheduler culture.
      UG: ej2.syncfusion.com/react/documentation/schedule/localization/?no-cache=1
      And for your reference, we have prepared the sample with Russian culture which is available in the below link.
      GitHub Sample: github.com/SyncfusionExamples/react-scheduler-with-russian-culture
      Kindly try the above sample and get back to us if you would require any further assistance.

  • @bryanbac6322
    @bryanbac6322 ปีที่แล้ว

    with a community license can i have access to this scheduler??

    • @SyncfusionInc
      @SyncfusionInc  ปีที่แล้ว

      Hello,
      Thank you for reaching out. Yes, with the community License, you have the access to the Scheduler.

  • @nayomeanga4339
    @nayomeanga4339 3 ปีที่แล้ว

    To use this feature in my website should I pay or get license?

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hello Nayome Anga,
      Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
      bit.ly/395t17c

  • @jamaltsdm
    @jamaltsdm 2 ปีที่แล้ว

    this component is free to commercial use ?

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello,
      Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
      bit.ly/395t17c

  • @javascriptexpanse
    @javascriptexpanse ปีที่แล้ว

    please update this video, it using an old version of reACT

    • @SyncfusionInc
      @SyncfusionInc  ปีที่แล้ว

      Hello Steven,
      Thank you for reaching out. Currently, we do not have plan to update the existing video. Please refer to these Demo and Documentation links.
      ej2.syncfusion.com/react/demos/#/material/schedule/defaultDocumentation: ej2.syncfusion.com/react/documentation/schedule/getting-started

  • @malekhammou7572
    @malekhammou7572 4 ปีที่แล้ว

    Is it possible to persist data with my node app ?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว +1

      Yes, it is possible by making use of the enablePersistence property.
      Please refer to the below API link
      ej2.syncfusion.com/react/documentation/api/schedule/#enablepersistence

  • @mukeshm7659
    @mukeshm7659 3 ปีที่แล้ว

    how to change the css of event i want to change the color of event
    plz inform me

    • @mukeshm7659
      @mukeshm7659 3 ปีที่แล้ว

      i want to change complete design how can i
      i want to place the week and day button at left corner and title will be in between nav buttons

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hi Mukesh,
      Hope you are doing good. Thank you for watching our video. You can use Appointment Customization for your requirement. Please refer to the following link,
      ej2.syncfusion.com/react/documentation/schedule/appointments/#appointment-customization

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hello,
      We can look into this and get back to you but response times via our TH-cam videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident
      If you have a retail or flat license, you also have access to our support chat.

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Please use actionBegin event of the scheduler. We have prepared a sample for your reference which can be viewed from the following link.
      Sample: stackblitz.com/edit/react-header-customization?file=index.js

  • @sairampolisetty3941
    @sairampolisetty3941 4 ปีที่แล้ว

    CDN link in not working and I have doubt is this work in reactjs

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      To render the Syncfusion Scheduler, you have to import the Scheduler’s modules, and that can be available only in the npm package. So if we refer the CDN link to render the component, it will not works. But you can refer the theme related CDN links in the project.

  • @muhammetarslantas1178
    @muhammetarslantas1178 3 ปีที่แล้ว +1

    How to get data from the calendar? Because we can create an appointment on the calendar but the guide tells us crud with an additional button. I'd like to use the create-form on the calender for add, delete and update. By the way thanks for the tutorial.
    NOT: I'm using functional component instead of class component in React.

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      We can customize the Schedule editor window with the help of the editor template of the Schedule. For that, we have prepared a sample that can be available from the below link. You can perform the CRUD actions with the ej2-react-schedule by connecting to the shared remote data sample.
      Sample: stackblitz.com/edit/ej2-react-functional-schedule-with-editor-template-sample?file=index.js
      Remote data sample: www.syncfusion.com/downloads/support/directtrac/general/ze/ej2-reacct-schedule-remote-data-service318644142

  • @jaburu01
    @jaburu01 3 ปีที่แล้ว

    Is possible change the language?

    • @SyncfusionInc
      @SyncfusionInc  3 ปีที่แล้ว

      Hello João Jabur,
      Thank you for watching our videos. The following link might help you.
      ej2.syncfusion.com/react/documentation/schedule/localization/#globalization
      Please let us know if you have any questions.

  • @user-fz4uv9gm4n
    @user-fz4uv9gm4n ปีที่แล้ว

    Is it still work nowadays?? I can't find tsx files

    • @SyncfusionInc
      @SyncfusionInc  ปีที่แล้ว

      Hello,
      You can follow the below guidelines to create a schedule using the React application in the Typescript environment.
      syncfusion.pulse.ly/k6n5wan5qy

  • @Nobudy_1
    @Nobudy_1 2 ปีที่แล้ว

    hey i need to build a system like that can ask you when i get block ?

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello Ismailll,
      Thank you for watching our video. Can you please be more specific on your requirement if you need to add the events or get the event details in specific time?

    • @Nobudy_1
      @Nobudy_1 2 ปีที่แล้ว

      @@SyncfusionInc how to save the data from the events to publish it with other users like Employee scheduling system
      th-cam.com/video/ufpljeT6-do/w-d-xo.html

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello,
      We can look into this and get back to you but response times via our TH-cam videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident
      If you have a retail or flat license, you also have access to our support chat.

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      We suspect that the customer requires an Employee scheduling system. If so, we have demonstrated a similar sample live, which can refer to the following demo link
      ej2.syncfusion.com/react/demos/#/bootstrap5/schedule/timeline-resources

  • @zorenaguilar9983
    @zorenaguilar9983 ปีที่แล้ว

    how to edit the form?

    • @SyncfusionInc
      @SyncfusionInc  ปีที่แล้ว

      Helli Zoren,
      Thank you for reaching out.
      We suspect that your requirement is to edit appointments using the editor window. Please refer to the below-shared UG topic. ej2.syncfusion.com/react/documentation/schedule/crud-actions#update-using-editor-window.

  • @finschbelserion8039
    @finschbelserion8039 2 ปีที่แล้ว

    It's support Next.js right?

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว +1

      Hello Finsch,
      Thank you for watching our video. Yes, it supports. Please refer to the below forum,
      www.syncfusion.com/forums/164119/how-to-integrate-syncfusion-correctly-to-next-js.

  • @aamirjamal6833
    @aamirjamal6833 4 ปีที่แล้ว

    Is this open source? Free to use?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว +1

      Hi Aamir,
      You can either try our 30-day free trial www.syncfusion.com/react-ui-components/react-scheduler or else you can also check our Community License, which provides free access to all the Syncfusion products for individual developers and small businesses www.syncfusion.com/products/communitylicense
      Please let us know, if you have any questions.

  • @manishkumar-ce2db
    @manishkumar-ce2db 4 ปีที่แล้ว

    css not working

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      We have validated your reported problem with “CSS is not working” but we couldn't reproduce or face any such issue. For your reference, we have prepared the sample to change the appointment color through CSS and it is available in the below link.
      Sample: stackblitz.com/edit/react-8wshmj-bpcbxn?file=index.html
      Kindly check the above sample and if you still face the problem, please share your CSS details and sample to check it from our end.

  • @hassantariq2459
    @hassantariq2459 2 ปีที่แล้ว

    Can you share the code plz

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Hello Hassan,
      Thanks for watching our tutorial. We will reach out to the product team for a link to the code and get back to you.

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว

      Please refer to below link for the source code
      github.com/SyncfusionExamples/getting-started-with-the-react-scheduler-component

  • @prabhat.raushan
    @prabhat.raushan 7 วันที่ผ่านมา

    is it paid or free ?

    • @SyncfusionInc
      @SyncfusionInc  7 วันที่ผ่านมา

      Hello @prabhat.raushan,
      Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
      bit.ly/395t17c

  • @ojuolapeobanisola6170
    @ojuolapeobanisola6170 4 ปีที่แล้ว

    Is this free?

    • @SyncfusionInc
      @SyncfusionInc  4 ปีที่แล้ว

      If you are an individual developer or running a small business, then you can check for your eligibility to obtain a free Community License, which provides free access to all our Syncfusion products.
      bit.ly/3eMROi2

  • @trap4089
    @trap4089 2 ปีที่แล้ว

    She is using light theme💀

    • @SyncfusionInc
      @SyncfusionInc  2 ปีที่แล้ว +1

      Hi Trap, we hear you! We have an ongoing debate in the office about who prefers light theme, and who prefers dark. 😅

    • @trap4089
      @trap4089 2 ปีที่แล้ว

      @@SyncfusionInc 😂

  • @MohammadRaiyanShaikh
    @MohammadRaiyanShaikh ปีที่แล้ว

    is it free or paid ?

    • @SyncfusionInc
      @SyncfusionInc  ปีที่แล้ว

      Hello Mohammad Raiyan Shaikh,
      Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
      bit.ly/395t17c