| Author |
Message |
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 03/06/2010 06:47:41
|
CNXS
SysAider

Joined: 14/10/2008
Messages: 44
Location: Carlisle, Cumbria
Offline
|
Haim wrote:Hey Jeff.
There is an option to set a default category, but the users will still have access to the other categories, so this option will probably not work for you.
Is there a reason why you cannot re-organize the companies structure so it will fit the category limitaion needs?
Best regards.
Haim
Hello i really want to do this, i can get the first category to default to a value but i cant get the subcategory or thirdlevel values to default.
This is the code i am using:
<td class="Form_Ctrl_Label"><label>$resource.getString('submit.category.caption'):</label></td>
<td> </td>
<td class="Form_Ctrl_Fields"><table><tr>$frm.printControl('problem_type', true, true, 'Automated Requests') $subCategorySelect $thirdLevelCategorySelect</tr></table></td>
</tr>
<tr><td height="10"> </td></tr>
<tr>
can anyone help
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 08/06/2010 05:08:11
|
pguminski
SysAider
Joined: 07/06/2010
Messages: 4
Offline
|
Hi All,
all you wrote doesnt work for me!
I whant to remove the Urgency and Asset Field from the Service Request Form of the end UserPortal.
I deleted the lines in the File: submit-service-request.html.
Nothing happens!
Reload & Restart the sysaidserver -> noting happens!
Please tell me how can i do this? Step by Step please.
Thank you
|
| Filename |
001.jpg |
|
| Description |
|
| Filesize |
79 Kbytes
|
| Downloaded: |
7 time(s) |
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 08/06/2010 11:32:26
|
Brob2k1
SysAider
Joined: 26/05/2010
Messages: 2
Offline
|
pguminski,
Did you copy the file and then edit it. From what I understand you HAVE to copy the orignial file, make your changes, save the file and then in the SysAid software point to where the edited files are located. I have not done this myself yet but I will be working on it later today / tomorrow. If you have any update please post it here also so others can reference it.
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 13/06/2010 06:16:54
|
LiranCohen
Super SysAider

Joined: 21/04/2010
Messages: 70
Offline
|
Dear pguminski,
Please edit your submit-service-request.htm file and search for this section.
Delete the entire section and save a copy of this file.
<tr>
#if ($selectUrgency.getRequired())
<td class="Form_Ctrl_Label">$resource.getString('mandatory.sign')</td>
#else
<td class="Form_Ctrl_Label"> </td>
#end
<td class="Form_Ctrl_Label"><label>$resource.getString('submit.urgency.caption'):</label></td>
<td> </td>
$selectUrgency
</tr>
Reload the file from Customize > Appearance - > Reload templates.
Make sure the path is correct at the "HTML Files Location" field.
login as a regular user and search this field.
Please update this post if you still see the Urgency field.
Thanks
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 15/07/2010 02:21:21
|
pmatsinopoulos
SysAider

Joined: 08/08/2008
Messages: 43
Location: Athens
Offline
|
Hi Haim,
I want to ask user to submit a Contact Person (First Name and Last Name) on the submit service request form.
Either as one field "Contact:" in which he/she will write the first and last name, or as two fields "First Name: ", "Last Name: ".
What is your suggestion here? Shall I use the custom text fields?
BTW, there is a "contact" column in service_req table. The documentation says this field is "Obsolete". Does this mean that I should and can not use it?
BR
Panayotis
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 17/07/2010 16:36:47
|
itayH
SysAid Customer Relations

Joined: 23/09/2009
Messages: 1092
Offline
|
Hi ,
As Haim replacement, not that I can, here is my suggestion,
Use one field so you will have the second one for a different custom text if you will need in the future.
Just copy this to your Submit-service-request.html file:
<tr>
<td class="Form_Ctrl_Label"> </td>
<td class="Form_Ctrl_Label"><label>Full Name:</label></td>
<td> </td>
$frm.printControl('cust_text1', true, true, '')
</tr>
<tr><td height="10"> </td></tr>
If you want to have to fields just add it again and change the Full Name to First\Last Name and the cust_text1 to cust_text2.
Let me know if that helps you.
|
Best Regards,
Itay |
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 04/08/2010 06:46:50
|
kimmey
Super SysAider
Joined: 19/04/2010
Messages: 86
Offline
|
Hello
I am trying to add the cc field to end user portal as described earlier in this string, but I can't get it to work.
I have added the required text to the html file but I am not 100% sure I have added it in the correct place.
Could anyone show me the full 'submit-service-request.htm' file with the addition in? Then I can check I am amending the file correctly.
Many Thanks
kim
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 05/08/2010 09:30:15
|
itayH
SysAid Customer Relations

Joined: 23/09/2009
Messages: 1092
Offline
|
Hi Kim,
In order to add the CC field please add the following to the Submit Service Request page:
<tr>
<td> </td>
<td><strong>CC:</strong></td>
<td>$frm.printControl('cc')</td>
<td> </td>
</tr>
The location of these blocks can be anywhere in the Submit SR form, but they must be placed after a block is closed (</tr> .
|
Best Regards,
Itay |
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 06/12/2010 17:18:40
|
Nico
SysAider
Joined: 06/12/2010
Messages: 1
Offline
|
Hi itayH,
Iwas using the CC field on the Submit Service Request page without any problem on sysaid 7.0.
I've updated to version 7.5.03 and now the CC field with the browse button is not displaying.
The code I've tried are:
$frm.printControl('cc')
$frm.printControl('cc', false, true, null)
The output HTML is empty, no text field and browse button.
Thank you for your help.
-Nico
This message was edited 1 time. Last update was at 06/12/2010 17:19:43
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 07/12/2010 04:10:56
|
Inna
SysAid Customer Relations
Joined: 24/06/2010
Messages: 735
Offline
|
Dear Nico,
This is a known issue in our current release 7.5.03 this should be resolved in 7.5.04 which should be released in our next release by the end of December
Thanks
Inna
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 01/02/2011 17:40:00
|
Parkermc
SysAider
Joined: 01/02/2011
Messages: 2
Offline
|
SysAid v7.5.05 Enterprise Ed.
IE 7 & 8
I created an additional column (or field) to be added to the End User Submit form as an "if" statement per category selection. I've added the label definition in the Translate file which shows great, but the text box doesn't populate. I substituted "cust_text1" for the text box in the customized code and this object did poplulate. Below is what I have for the "submit-service-request.htm".
Is there something I'm missing?
Mike
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 07/02/2011 14:43:21
|
Parkermc
SysAider
Joined: 01/02/2011
Messages: 2
Offline
|
Problem Solved.
I had the incorrect name for the newly created field or control.
|
|
|
![[Post New]](/Sysforums/templates/default/images/icon_minipost_new.gif) 10/10/2011 20:00:28
|
xliv
SysAider
Joined: 12/08/2011
Messages: 14
Offline
|
EDIT: Please disregard this post!
This message was edited 2 times. Last update was at 11/10/2011 13:24:33
|
|
|