Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
sureshkumar.mr Offline
Member
 
Posts: 149
Join Date: May 2006
Question Unique template group for each Department and to list the same in department list - 28-09-2006, 02:24 PM

Hi Friends,
We are using eSupport in our office for various departments. Each department is having a specific requirement.

To meet their various requirements I have individual template group for each department. So each department is assigned with a unique tempate group.

Now I need to list all these departments in the department list in the submit page where user have the option to choose the department.

But this is not possible with the current Kayako version. Each department assigned to a separate Template group needs to be acessed using different URL.

I have edited the Admin CP » Templates » Manage Templates » Dashboard » Templates » submitdepartmentlist and added the radio button for all the departments and their respective id's in HTML.

However when the user selects the department and goes to the next page the default template page is displayed instead of the template group which I have assigned to that department.

How to fix this issue.

Regards,
SURESH KUMAR M R
   
Reply With Quote
  (#2) Old
jptimone Offline
New Member
 
Posts: 15
Join Date: Mar 2006
Location: Kuopio, Finland
29-09-2006, 10:35 AM

Could you post here your modifications on "submitdepartmentlist" -template so we could look that together? You said that you
Quote:
added the radio button for all the departments and their respective id's in HTML
Did you add usergroupid's or templategroupid's?

Like "...index.php?group=sales" where sales is template name.
   
Reply With Quote
  (#3) Old
sureshkumar.mr Offline
Member
 
Posts: 149
Join Date: May 2006
29-09-2006, 02:06 PM

The code looks as below. The department id is 6, however the template id is 2 for DBA department, but no where template group id is mentioned here. By default it takes default template whose id is 1.

Please let me know where I am doing wrong.


<fieldset class="swiftfieldset">
<legend><{$language[selectdepartment]}></legend>
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<{foreach key=key value=item from=$ticketdepartments}>
<tr>
<td width="1" align="left" valign="top" class="row2"><label for="departmentid[<{$item[departmentid]}>]"><input type="radio" name="departmentid" id="departmentid[<{$item[departmentid]}>]" value="<{$item[departmentid]}>"<{if $tgroup[departmentid] == $item[departmentid]}> checked<{/if}>></label></td>
<td><span class="smalltext"><label for="departmentid[<{$item[departmentid]}>]" style="CURSOR: pointer;"><{$item[title]}></label></span></td>
</tr>
<{/foreach}>
<!-- DBA Department code Begins-->
<tr>
<td width="1" align="left" valign="top" class="row2"><label for="departmentid[6]"><input type="radio" name="departmentid" id="departmentid[6]" value="6" checked></label></td>
<td><span class="smalltext"><label for="departmentid[6]" style="CURSOR: pointer;">DBA</label></span></td>
</tr>
<!-- DBA Department code ends -->
</table>
</fieldset>


Last edited by sureshkumar.mr; 29-09-2006 at 02:13 PM.
   
Reply With Quote
Reply

Tags
department, template, unique

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46