Jump to content

Config period time default CalendarPanel


Felipe Lugo

Recommended Posts

 

12 hours ago, Felipe Lugo said:

Hello, is posible to config/change the default 30 minutes time period in a CalendarPanel? Because if I create a event with 15 minutes period, I can see it, but is not posible to see detail info about the event.

 

Hello,

You can use Sherzod Technics :

http://forums.unigui.com/index.php?/topic/14417-unicalendarpanel-with-vertical-scrollbar/

 

=========================================
1. ScrolBar  IsAllDay  :

CustomCSS:

.x-calendar-days, .x-calendar-header {
    overflow-y: scroll;
}

 

=========================================

2. Also for month view  (ScrolBar   IsAllDay):
.x-calendar-weeks-overflow-popup {
    height: 100% !important;
    overflow-y: auto;
    overflow-x: hidden;
}

 

=========================================

3. Order By DateTime  

procedure TMainForm.UniFormReady(Sender: TObject);
begin
  with UniCalendarPanel1 do
    JSInterface.JSCode(#1'.calendarStore.eventSource.sorters.addSort({direction:"ASC", property:"id"});');
end;

 

 

i1.png

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...