mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Add today button into sidebox navigation calendar
This commit is contained in:
parent
1dabc6a569
commit
a951366235
@ -63,7 +63,7 @@ app.classes.calendar = AppJS.extend(
|
||||
owner: egw.user('account_id'),
|
||||
days: egw.preference('days_in_weekview','calendar')
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
@ -116,7 +116,7 @@ app.classes.calendar = AppJS.extend(
|
||||
|
||||
// Avoid many problems with home
|
||||
if(_et2.app !== 'calendar') return;
|
||||
|
||||
|
||||
// Re-init sidebox, since it was probably initialized too soon
|
||||
var sidebox = jQuery('#favorite_sidebox_'+this.appname);
|
||||
if(sidebox.length == 0 && egw_getFramework() != null)
|
||||
@ -1605,7 +1605,7 @@ app.classes.calendar = AppJS.extend(
|
||||
// Pass status filter in as status filter, avoids conflicts with nm filter
|
||||
state.state.status_filter = state.state.filter;
|
||||
delete state.state.filter;
|
||||
|
||||
|
||||
var nm = view.etemplates[0].widgetContainer.getWidgetById('nm');
|
||||
nm.applyFilters(state.state);
|
||||
}
|
||||
@ -1925,7 +1925,7 @@ app.classes.calendar = AppJS.extend(
|
||||
t.setUTCDate(t.getUTCDate() + 1);
|
||||
}
|
||||
while(t < end);
|
||||
|
||||
|
||||
// Some data is missing for the current owner, go get it
|
||||
if(need_data && seperate_owners)
|
||||
{
|
||||
@ -2030,7 +2030,7 @@ app.classes.calendar = AppJS.extend(
|
||||
{
|
||||
this.egw.dataStoreUID(app.classes.calendar._daywise_cache_id(day, state.owner), updated_days[day]);
|
||||
}
|
||||
|
||||
|
||||
// More rows?
|
||||
if(data.order.length + start < data.total)
|
||||
{
|
||||
@ -2063,7 +2063,7 @@ app.classes.calendar = AppJS.extend(
|
||||
sprintf("%02d",date.getUTCMinutes()) + ':'+
|
||||
sprintf("%02d",date.getUTCSeconds()) + 'Z';
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* Formats one or two dates (range) as long date (full monthname), optionaly with a time
|
||||
*
|
||||
@ -2287,7 +2287,7 @@ app.classes.calendar = AppJS.extend(
|
||||
if(date)
|
||||
{
|
||||
date.input_date.datepicker("option", {
|
||||
showButtonPanel: false,
|
||||
showButtonPanel: true,
|
||||
onChangeMonthYear: function(year, month, inst)
|
||||
{
|
||||
// Switch to month view for that month
|
||||
@ -2344,10 +2344,10 @@ app.classes.calendar = AppJS.extend(
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
* Record view templates so we can quickly switch between them.
|
||||
*
|
||||
*
|
||||
* @param {etemplate2} _et2 etemplate2 template that was just loaded
|
||||
* @param {String} _name Name of the template
|
||||
*/
|
||||
@ -2358,10 +2358,10 @@ app.classes.calendar = AppJS.extend(
|
||||
|
||||
// Avoid home portlets using our templates, and get them right
|
||||
if(_et2.uniqueId.indexOf('portlet') === 0) return;
|
||||
|
||||
|
||||
// Flag to make sure we don't hide non-view templates
|
||||
var view_et2 = false;
|
||||
|
||||
|
||||
for(var view in app.classes.calendar.views)
|
||||
{
|
||||
var index = app.classes.calendar.views[view].etemplates.indexOf(_name);
|
||||
|
@ -792,4 +792,10 @@ img.calendar_print_button, img.calendar_print_appicon {
|
||||
|
||||
#calendar-edit_category {
|
||||
max-width:230px;
|
||||
}
|
||||
|
||||
#calendar_sidebox_content .ui-datepicker div.ui-datepicker-buttonpane {
|
||||
border-top: 0;
|
||||
margin: 0;
|
||||
padding-right: 3px;
|
||||
}
|
@ -11,7 +11,7 @@
|
||||
* @package calendar
|
||||
* @version $Id$
|
||||
*/
|
||||
/* $Id: app.css 53462 2015-08-25 00:00:45Z nathangray $ */
|
||||
/* $Id: app.css 53550 2015-09-02 22:40:38Z nathangray $ */
|
||||
/*Media print classes*/
|
||||
@media print {
|
||||
.th td,
|
||||
@ -790,6 +790,11 @@ img.calendar_print_appicon {
|
||||
#calendar-edit_category {
|
||||
max-width: 230px;
|
||||
}
|
||||
#calendar_sidebox_content .ui-datepicker div.ui-datepicker-buttonpane {
|
||||
border-top: 0;
|
||||
margin: 0;
|
||||
padding-right: 3px;
|
||||
}
|
||||
/*generell*/
|
||||
.egw_fw_content_browser_iframe img[src$="svg"] {
|
||||
background-color: #828282 !important;
|
||||
|
Loading…
Reference in New Issue
Block a user