Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - kils

Pages: 1 [2] 3
16
или из русскоязычного сообщества вам некому помочь. Попробуйте написать свой вопрос в ветке questions

17
У меня прилично переделанная версия системы, стоит в двух компаниях, добавляю новые фишки, исправляю баги и так далее. Пользователей тоже хватает, одна БД за 3Гб уже.

18
How To's / Re: Google Chrome freezing on creating event in calendar
« on: November 13, 2014, 11:18:00 am »
i have the windows 7 pro x64, and it freesed on my 2.6.0 and 2.6.1 and in your Fo demo system. But other browsers worked normally. Some of my users have this problems to, but at now all works Ok on my FO and your demo version.

I also write to Google Chrome Support team and maybe it was some bug. Now i have 38.0.2125.111 m version (old is - 38.0.2125.101 m)

19
How To's / Re: You must select where to keep the file
« on: November 13, 2014, 11:10:28 am »
you must select workspace for file, by default your workspace is "view all". Also you can change permission for user: administration->users->permissions(link for every user) and at bottom you can see "Permissions for objects without classification". Maybe option "Let users create objects without classifying them" in administration->configuration->general  helps you to

20
How To's / Re: delete all email of 1 workspace
« on: October 15, 2014, 04:20:42 am »
hi, maybe i can help you. Try go to "Account -> Edit preferences -> Email options -> Mails per page" and change 50 to 1000 or more emails per page )

21
How To's / Re: Google Chrome freezing on creating event in calendar
« on: October 10, 2014, 09:35:06 am »
if i delete in og.EventPopUp.superclass.constructor.call next object -
Code: [Select]
items: [
  items: [
    this.form = new Ext.FormPanel({
      items:[...]
  ]
]

22
How To's / Google Chrome freezing on creating event in calendar
« on: October 10, 2014, 07:48:33 am »
Hi, my chrome (38.0.2125.101 m) freezing if i try to create a new event, i know that it happens with next code:
Code: [Select]
og.EventPopUp = function (data, config) {
    if (!config) {
        config = {};
    }
    og.EventPopUp.superclass.constructor.call(this, Ext.apply(config, {
        y: 220,
        width: 350,
        height: 230,
        id: 'add-event',
        layout: 'border',
        modal: true,
        resizable: false,
        closeAction: 'hide',
        iconCls: 'ico-calendar',
        title: data.title,
        border: false,
        focus : function() {
                Ext.get('name').focus();
            },
            buttons: [{
                text: lang('add event'),
                handler: this.accept,
                scope: this
            },{
                text: lang('cancel'),
                handler: this.cancel,
                scope: this
            }],
            items: [
                {
                    region: 'center',
                    layout: 'fit',
                    items: [
                        this.form = new Ext.FormPanel({
                            id: data.genid + '-ev_popup_form',
                            labelWidth: 75, // label settings here cascade unless overridden
                            frame:false,
                            height: 140,
                            url: '',
                            bodyStyle:'padding:20px 20px 0',
                            defaultType: 'textfield',
                            border:false,
                            bodyBorder: false,
                            items: [
                                {
                                    fieldLabel: lang('name'),
                                    name: 'event[name]',
                                    id: 'name',
                                    allowBlank:false,
                                    enableKeyEvents: true,
                                    style: {width: '200px'},
                                    blankText: lang('this field is required'),
                                    listeners: {specialkey: function(field, ev){
                                        if (ev.getKey() == ev.ENTER) Ext.getCmp('add-event').accept();
                                    }}
                                },
                                {
                                    name: 'event[start_time]',
                                    id: 'start_time',
                                    xtype: 'timefield',
                                    width: 80,
                                    fieldLabel: lang('event start time'),
                                    format: data.time_format,
                                    editable: false,
                                    value: data.start_time
                                },
                                {
                                    name: 'event[duration]',
                                    id: 'duration',
                                    xtype: 'timefield',
                                    width: 60,
                                    fieldLabel: lang('duration'),
                                    format: 'G:i',
                                    editable: false,
                                    value: data.durationhour + ':' + (data.durationmin < 10 ? '0':'') + data.durationmin
                                },
                                {
                                    xtype: 'checkbox',
                                    name: 'event[all_day_event]',
                                    id: 'all_day_event',
                                    fieldLabel: lang('all day event'),
                                    value: (data.type_id == 2)
                                },
                                    {
                                    xtype: 'hidden',
                                    name: 'members',
                                    cls: 'ev_popup_members',
                                    id: data.genid + 'ev_popup_members',
                                    value: ''
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[start_day]',
                                    id: 'day',
                                    value: data.day
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[start_month]',
                                    id: 'month',
                                    value: data.month
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[start_year]',
                                    id: 'year',
                                    value: data.year
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[hour]',
                                    id: 'hour',
                                    value: data.hour
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[minute]',
                                    id: 'min',
                                    value: data.minute
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[type_id]',
                                    id: 'type_id',
                                    value: data.type_id
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[durationhour]',
                                    id: 'durationhour',
                                    value: data.durationhour
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[durationmin]',
                                    id: 'durationmin',
                                    value: data.durationmin
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'event[start_value]',
                                    id: 'start_value',
                                    value: data.start_value
                                },
                                {
                                    xtype: 'hidden',
                                    id: 'hide_calendar_toolbar',
                                    value: data.hide_calendar_toolbar
                                },
                                {
                                    xtype: 'hidden',
                                    name: 'view',
                                    id: 'view',
                                    value: data.view
                                }
                            ]
                        })
                    ]
                },{
                    region: 'south',
                    height: 20,
                    html:"<div style='width:100%; text-align:right; padding-right:8px'><a href='#' onclick=\"og.EventPopUp.goToEdit()\">" + lang('edit event details') + "</a></div>"
                }
            ]
}));
}

i try input console.log() into this code and it works if  it before og.EventPopUp.superclass.constructor.call......
i swich off all my plugins and nothing happens

23
How To's / Re: tags tab is missing
« on: October 07, 2014, 03:17:40 am »
if you mean left column than you must look at bottom of this and see label "see more", then click on it and activate the tags

24
Pусский / Re: Проблема с почтой
« on: September 22, 2014, 05:38:13 am »
Такого не было

Проверьте у себя, у меня было во всех версиях, включая текущую установленную 2.6.1
вылечил так - http://forum.fengoffice.com/index.php?topic=19670.0

25
How To's / FIXED: deleting cyrillic filenames from forwarded emails
« on: September 22, 2014, 05:37:32 am »
hi i have this trouble and i fix it by change some rows in \plugins\mail\application\controllers\MailController.class.php

in my 2.6.1 FO first row 2386
Code: [Select]
//$fName = iconv_mime_decode($att["FileName"], 0, "UTF-8");
//$fName = str_replace(':', ' ', $fName);
$fName = $att["FileName"]; //new line without decode

26
Pусский / Re: Проблема с почтой
« on: September 22, 2014, 03:59:56 am »
А не было такого что прикрепленные файлы с кириллическими именами при пересылке теряли свои имена?

27
How To's / Where i can downolad 2.5.1.5 Community edition
« on: September 11, 2014, 07:29:17 am »
Hi i have fengoffice 2.5.1.4 CE and want upgrade to 2.6.0 and later, but i can't see 2.5.1.5 on sourceforge.....
Can i upgrade 2.5.1.4 directly to 2.6 ?? Or where i can download 2.5.1.5 release?

28
How To's / Re: Required fileds when creating milestones
« on: June 19, 2014, 04:18:01 am »
oh i see that bug only in date fields

29
How To's / Required fileds when creating milestones
« on: June 18, 2014, 02:48:23 am »
When i create milestone i see that due date is required field, but when i click save button i see error with milestone name only and if i leave due date field is blank my milestone will be succesfully created

i fined this code in \application\models\project_milestones\ProjectMilestone.class.php
Code: [Select]
function validate(&$errors) {
if(!$this->getObject()->validatePresenceOf('name')) $errors[] = lang('milestone name required');
if(!$this->validatePresenceOf('due_date')) $errors[] = lang('milestone due date required');
} // validate

maybe this option can be activated in admininstration panel?

30
How To's / Re: TASK VIEW
« on: June 18, 2014, 02:39:26 am »
you can try allow access to folder where you create a task

Pages: 1 [2] 3