- Joined
- Nov 12, 2011
- Messages
- 12
- Reaction score
- 3
At some point recently, the template for Snom telephones does not include 2 built-in line appearances. (e.g. - the template has two line instances hard coded as buttons 1 and 2, and 'BLF 1' actually STARTS on button 3.) or in code... we went from this:
To this:
This is a HUGE change, IMO (and I'm not saying 'better' there)... Luckily, we mostly use customized templates due to no GUI based settings for things like date and time settings until recently (CW_Dialtone Is STILL not fixed in the default Snom template, BTW!)
If this template were updated on a production system using the default snom template, every BLF would be shifted 2 to the left, and the user would likely end up with no line instances!
Such a change without a prompt to an administrator to acknowledge this is just downright unacceptable. 3CX, you guys constantly say 'customized templates aren't supported'. Well... if you're going to say 'our way or the highway' on templates, you need to make sure you're doing it right.
This issue is compounded by the fact that there isn't an 'insert' or 'drag and drop' functionality within the BLF/Button screen in the extension, so I basically have to manually move each button down two rows on a 16 button phone.
My worst fear is that this is going to be 'fixed' in a subsequent template update, again pushing buttons around...
I loved the concept of automatic updates, but if this is the type of unexpected item that is going to be automatically installed and break my customers phones... my helpdesk can do without that kind of 'help'.
Code:
<fkey idx="0" context="active" perm="">line</fkey>
<fkey idx="1" context="active" perm="">line</fkey>
To this:
Code:
{IF $blffunc=blfrow}
{IF blf1}
<fkey idx="0" context="active" label="%%label%%" perm="">%%value%%</fkey>
{ELSE}
<fkey idx="0" context="active" perm="">none</fkey>
{ENDIF}
{IF blf2}
<fkey idx="1" context="active" label="%%label%%" perm="">%%value%%</fkey>
{ELSE}
<fkey idx="1" context="active" perm="">none</fkey>
{ENDIF}
This is a HUGE change, IMO (and I'm not saying 'better' there)... Luckily, we mostly use customized templates due to no GUI based settings for things like date and time settings until recently (CW_Dialtone Is STILL not fixed in the default Snom template, BTW!)
If this template were updated on a production system using the default snom template, every BLF would be shifted 2 to the left, and the user would likely end up with no line instances!
Such a change without a prompt to an administrator to acknowledge this is just downright unacceptable. 3CX, you guys constantly say 'customized templates aren't supported'. Well... if you're going to say 'our way or the highway' on templates, you need to make sure you're doing it right.
This issue is compounded by the fact that there isn't an 'insert' or 'drag and drop' functionality within the BLF/Button screen in the extension, so I basically have to manually move each button down two rows on a 16 button phone.
My worst fear is that this is going to be 'fixed' in a subsequent template update, again pushing buttons around...
I loved the concept of automatic updates, but if this is the type of unexpected item that is going to be automatically installed and break my customers phones... my helpdesk can do without that kind of 'help'.