Home    Forums    Feature Requests    Beta Issues    SysAid Resources    Documentation    Support
Hello Guest,  Login   
        
DOWNLOAD FREE EDITION
    
     Recent Topics    Hottest Topics    Online Members    Member Listing    Advanced Search
How to - add additional fields to the "submit service request" page  XML
Forum Index » FAQ
 
Author Message
CNXS
SysAider


SysAider from release 5.1 United Kingdom
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
pguminski
SysAider

SysAider from release 6
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
[Thumb - 001.jpg]
 Filename 001.jpg Download
 Description
 Filesize 79 Kbytes
 Downloaded:  7 time(s)

Brob2k1
SysAider

SysAider from release 6.5 United States
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.
LiranCohen
Super SysAider


SysAider from release 6.5 Israel
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
[Email] [WWW] [MSN]
pmatsinopoulos
SysAider


SysAider from release 5.1 Greece Pathfinder
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
[Email] [WWW] [MSN]
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
kimmey
Super SysAider

SysAider from release 6.5 United Kingdom
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
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
Nico
SysAider

SysAider from release 7.5 United States
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

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
Parkermc
SysAider

SysAider from release 6.5 United States
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
Parkermc
SysAider

SysAider from release 6.5 United States
Joined: 01/02/2011
Messages: 2
Offline

Problem Solved.

I had the incorrect name for the newly created field or control.

xliv
SysAider

SysAider from release 7.5 United States
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

Forum Index » FAQ
Go to:   
Help Desk Software
Free Help Desk Software
Free Asset Management Software
SysAid Helpdesk Software
Web Based Help Desk Software
SysAid Help Desk Forum
General IT Discussion Forum
SysAid CSS Customer Service Software
Customer Support Software
   SysAid Technologies Ltd.
   Toll-Free phone center (U.S.): 1-800-686-7047
   Offices - U.S.617-231-0124
   Israel:+972-3-533-3675
   Skype account:ilient
   Email:helpdesk@sysaid.com
   Optimized by SEO Israel
   SysAid logos and other SysAid Technologies marks
   are trademarks or registered trademarks of
   SysAid Technologies Ltd.
   All Rights Reserved by SysAid Technologies Ltd.
   2002-2011
   Live Support Hours
   07:00 AM - 09:30 PM (UK)
   03:00 AM - 05:30 PM (EDT)

   We provide worldwide services, and we do our best
   to match the working times of customers from
   different time zones.

   SysAid Help Desk Software and Asset Management Software
Privacy Policy © Terms Of Use