6.0.0-beta1
▾
Tasks
New Task
Search
Photos
Wiki
▾
Tickets
New Ticket
Search
dev.horde.org
Toggle Alerts Log
Help
7/16/25
H
istory
A
ttachments
C
omment
W
atch
Download
Comment on [#10347] free / busy does not work in dynamic
*
Your Email Address
*
Spam protection
Enter the letters below:
\ /.___..___ __..___. >< | [__ (__ | / \ | [___.__) |
Comment
> I found the problem, that is on file > ?horde/kronolith/js/kronolith.js? and is related with the way to find > the ?free/busy scheduling? response, because is index using the users > description (?Name <email@doman.com>?) and them when the information > is needed, is looking using the users mail ?email@doman.com? so it > nerver will be find. > > So we have to change the line 5442 from: > > this.insertFreeBusy(attendee.e); > > To: > > this.insertFreeBusy(attendee.l); > > And the script will be ?almost? working, the olny problem now is that > ?always? appear as ?free? not matter if the user have a full day. > It's because the div's ?height? isn't set, so is too think that it > can't be seen. For that problem we have to change the line 5517 (is > not the exact line because I change the file but y very close to that > number) from: > > div = new Element('div').setStyle({ position: 'relative' }); > > To: > > div = new Element('div').setStyle({ position: 'relative', height: > (td.offsetHeight - 3) + 'px' }); > > And now we can enjoy from a fully complete ?free/busy scheduling?, > rest only a few problem when the user have not busy day at all, so > the response is empty and the script fail because it, so the > complete change is from: > > div = new Element('div').setStyle({ position: 'relative' }); > td.insert(div); > > To: > div = new Element('div').setStyle({ position: 'relative', height: > (td.offsetHeight - 3) + 'px' }); > td.insert(div); > > // Now verify that we got the correct occupation information for the user > if (fb.b.constructor != Object) > {return;} > > > That's all. > > I attach the file with the changes
Attachment
Watch this ticket
N
ew Ticket
M
y Tickets
S
earch
Q
uery Builder
R
eports
Saved Queries
Open Bugs
Bugs waiting for Feedback
Open Bugs in Releases
Open Enhancements
Enhancements waiting for Feedback
Bugs with Patches
Enhancements with Patches
Release Showstoppers
Stalled Tickets
New Tickets
Horde 5 Showstoppers