Jump to content

UniCalendarPanel Views Issues


mos

Recommended Posts

Hi,

 

I'm populating a unicalendarpanel via below:

  while not ADOQuery1.Eof do
    begin
      E := UniCalendarPanel1.Events.Add;
      E.CalendarId := 1;
      E.EventId := ADOQuery1.FieldByName('Key').AsInteger;
      E.Title := ADOQuery1.FieldByName('firstname').AsString + ' ' + ADOQuery1.FieldByName('surname').AsString;
      E.StartDate := ADOQuery1.FieldByName('startdate').AsDateTime;
      E.EndDate := ADOQuery1.FieldByName('enddate').AsDateTime;

      ADOQuery1.Next;
    end;

While the monthly view has no problem, when I switch to weekly and daily view, there seems to be no data showing for the dates with events.

Thank you

Link to comment
Share on other sites

14 minutes ago, Sherzod said:

Hi,

Which build?

Can you please make a simple testcase to see the issue?

Hi this is the build

Version:1.90.0 build 1534

But I've found the issue, it's about the time data being added to the event start and end date.

 

So this instead is my issue now, is it possible to remove the timestamps on the side of the weekly and monthly view?

image.thumb.png.b7ff166220bd760d5e92c481a54ade65.png

Link to comment
Share on other sites

54 minutes ago, mos said:

Yes, for both daily and weekly views, I would like to hide this time stamps column.

One possible solution, using CustomCSS:

.x-calendar-header-gutter, .x-calendar-days-header-gutter, .x-calendar-days-time-ct {
    display: none;
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...