<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "How to - add additional fields to the "submit service request" page"]]></title>
		<link>http://www.ilient.com/Sysforums/posts/list/102.page</link>
		<description><![CDATA[Latest messages posted in the topic "How to - add additional fields to the "submit service request" page"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ SysAid end user portal is based on HTML so you can edit it according to your needs.<br /> To add fields to the "submit service request" page, please follow the below instructions.<br /> <br /> Before editing the HTML folder, please create a copy of the \SysAidServer\root\WEB-INF\conf\html<br /> Then go to preferences &gt; customize &gt; appearance and add the complete path to this folder.<br /> After making the below changes, please go to preferences &gt; customize &gt; customized forms and click on "reload templates"<br /> <br /> To add field to the SR submission page, please edit the submit-service-request.htm file and use this syntax to add fields:<br /> <br /> &lt;tr&gt;<br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;<br /> $resource.getString('CAPTION-FIELD'):&lt;/label&gt;&lt;/td&gt;<br /> &lt;td&gt; &lt;/td&gt;<br /> $frm.printControl('FIELD-NAME', MANDATORY?, VISIBLE?, 'DEFAULT')<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> <br /> <br /> 1. CAPTION-FIELD should be replaced with a text to be written near the field, or the field name of the value showing in the Preferences -&gt; Customize -&gt; Translate tab.<br /> 2. FIELD-NAME represent the field which you want to add. A list of available field names is listed below.<br /> 3. MANDATORY? represent whether the end user must fill this field or not. This should be replaced with either true or false.<br /> 4. VISIBLE? represent whether the field is visible to the end user or not. This should be replaced with either true or false.<br /> 5. DEFAULT represent the default value. In case of a text field, you can leave it as '' for empty field. In case of a drop-down list, you have to choose the numeric value of the default, or '' for no default value.<br /> <br /> For example, this should be entered for a mandatory, visible Location field, with no default value:<br /> &lt;tr&gt;<br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;<br /> $resource.getString('sr.location'):&lt;/label&gt;&lt;/td&gt;<br /> &lt;td&gt; &lt;/td&gt;<br /> $frm.printControl('location', true, true, '')<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> <br /> Available Fields:<br /> <br /> Category and sub-category: problem_type<br /> Title: title<br /> Description: description<br /> Status: status<br /> Location: location<br /> Assigned Administrator: responsibility<br /> Urgency: urgency (DEFAULT value cannot be blank. use 0 for no urgency)<br /> Priority: priority (DEFAULT value cannot be blank. use 0 for no priority)<br /> Notes: notes<br /> Resolution: resolution<br /> Solution: solution<br /> Request time (read only): insert_time<br /> Last modify (read only): timeupdate_time<br /> Close SR time (read only): close_time<br /> Include in knowledgebase (checkbox): knowledge_base<br /> Submit user (read only): submit_user<br /> Request user: request_user<br /> Asset: computer_name<br /> Due date: due_date<br /> Parent SR: parent_link<br /> Assigned admin group: assigned_group<br /> CC: cc<br /> Custom List 1: cust_list1<br /> Custom List 2: cust_list2<br /> Custom Text 1: cust_text1<br /> Custom Text 2: cust_text2<br /> Custom Notes: cust_notes<br /> Custom Integer 1: cust_int1<br /> Custom Integer 2: cust_int2<br /> Department (read only): department<br /> Company (read only): company]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/518.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/518.page</link>
				<pubDate><![CDATA[Wed, 18 Jun 2008 12:37:08]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Haim, can I make a suggestion, can you add the words "in the end user portal" to the title of this faq.<br /> <br /> 3 people have asked this question and I don't think they are finding this article because the title does not contain the words "end user portal"]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/558.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/558.page</link>
				<pubDate><![CDATA[Thu, 19 Jun 2008 04:58:09]]> GMT</pubDate>
				<author><![CDATA[ techguy]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ <br /> Before editing the HTML folder, please create a copy of the \SysAidServer\root\WEB-INF\conf\html<br /> Then go to preferences &gt; customize &gt; appearance and [quote][b]add the complete path to this folder.[/b][/quote]<br /> <br /> Is this the complete UNC path or just the addition after the conf path? Anyone know?<br /> <br /> Cheers<br /> <br /> Darren<br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/564.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/564.page</link>
				<pubDate><![CDATA[Thu, 19 Jun 2008 05:42:41]]> GMT</pubDate>
				<author><![CDATA[ dblight]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi,<br /> <br /> It's actually very simple. First make the copy of the WEB-INF\conf\html folder to some other location, e.g. E:\SysAidServer\Custom (the full new path will then be E:\SysAidServer\Custom\html).<br /> <br /> Go to the appearance tab and paste in the FULL path (as relative to the SERVERS viewpoint) - in this case: E:\SysAidServer\Custom\html.<br /> <br /> The click save and Reload templates...<br /> <br /> Regards,<br /> Henrik Neumann]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/570.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/570.page</link>
				<pubDate><![CDATA[Thu, 19 Jun 2008 06:58:10]]> GMT</pubDate>
				<author><![CDATA[ HNeumann]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ I've modified the html file to remove the categories off the service request. My users complain constantly. However when I reload the templates and go back to the SR page, nothing has changed! I either need this removed from my SR page or I need to make it not mandatory and/or set a default category. <br /> I've checked to make sure I am placing my changed files back in the correct directory.<br /> I've checked to make sure I am pointing SysAid to the correct directory. <br /> I've checked to make sure I actually did modify the html file. <br /> I've checked and reloaded the templates over and over again.<br /> I feel like I've checked everything and I cannot get it to work. <br /> <br /> Any help would be greatly appreciated.  <img src="http://www.ilient.com/Sysforums/images/smilies/283a16da79f3aa23fe1025c96295f04f.gif" /><br /> <br /> Thanks<br /> Julia]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/1266.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/1266.page</link>
				<pubDate><![CDATA[Wed, 2 Jul 2008 15:47:21]]> GMT</pubDate>
				<author><![CDATA[ HCNW]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Julia.<br /> I'm not sure what caused it.. please open a service request on this issue at <a class="snap_shots" href="mailto:helpdesk@ilient.com">helpdesk@ilient.com</a><br /> <br /> Usually these things are very simple but not so simple to discover <img src="http://www.ilient.com/Sysforums/images/smilies/3b63d1616c5dfcf29f8a7a031aaa7cad.gif" />]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/1267.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/1267.page</link>
				<pubDate><![CDATA[Wed, 2 Jul 2008 15:52:28]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ I added a field "Can you reproduce this problem?  How?" as cust_notes and it showed up fine on the end user submit SR page, but what do I have to modify so that I can see it in the list view, "New SR", and "Phone Call" pages on the admin side?<br /> <br /> The new field does me little good when only the end user submitting it can see it  <img src="http://www.ilient.com/Sysforums/images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" />  ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/3226.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/3226.page</link>
				<pubDate><![CDATA[Fri, 5 Sep 2008 14:48:26]]> GMT</pubDate>
				<author><![CDATA[ CCSO IT]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ [quote=CCSO IT]I added a field "Can you reproduce this problem?  How?" as cust_notes and it showed up fine on the end user submit SR page, but what do I have to modify so that I can see it in the list view, "New SR", and "Phone Call" pages on the admin side?<br /> <br /> The new field does me little good when only the end user submitting it can see it  <img src="http://www.ilient.com/Sysforums/images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" />  [/quote]<br /> <br /> click on the wheel cog icon in each view and add the custom_notes from the left hand pane to the right.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/3229.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/3229.page</link>
				<pubDate><![CDATA[Fri, 5 Sep 2008 16:43:32]]> GMT</pubDate>
				<author><![CDATA[ techguy]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi,<br /> <br /> when I add:<br /> <br /> &lt;tr&gt; <br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt; <br /> $resource.getString('user.company'):&lt;/label&gt;&lt;/td&gt; <br /> &lt;td&gt; &lt;/td&gt; <br /> $frm.printControl('company', true, true, '') <br /> &lt;/tr&gt; <br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> <br /> I get:<br /> <br /> Company:  label class="Form_Ctrl_Label"&gt;Example Company<br /> <br /> What is my mistake? The result "Example Company" is right, but why is it writing "label class="Form_Ctrl_Label"&gt;"?<br /> <br /> Thanks for your efforts!<br /> <br /> EDIT: Sorry, the problem is only on one PC. Other Users don't have this issue, so please close this.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/5623.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/5623.page</link>
				<pubDate><![CDATA[Tue, 13 Jan 2009 11:59:32]]> GMT</pubDate>
				<author><![CDATA[ ikem]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Guys,<br /> <br /> I only want the end user portal to be used for one particular category and subcategory.<br /> How do I lock down the selection list from a drop-down list displaying everything -<br /> to just displaying one category and it's relevant sub-categories ?<br /> <br /> So form example, I just want end user visitors to put in a request for consumables.<br /> So the main category is locked at "Consumables Request" and the sub-category<br /> has a drop down for the different types.<br /> <br /> Hope I explained that OK.<br /> <br /> Jeff<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/6791.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/6791.page</link>
				<pubDate><![CDATA[Wed, 18 Feb 2009 07:22:36]]> GMT</pubDate>
				<author><![CDATA[ Jeff Usher]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ [quote=Jeff Usher]Guys,<br /> <br /> I only want the end user portal to be used for one particular category and subcategory.<br /> How do I lock down the selection list from a drop-down list displaying everything -<br /> to just displaying one category and it's relevant sub-categories ?<br /> <br /> So form example, I just want end user visitors to put in a request for consumables.<br /> So the main category is locked at "Consumables Request" and the sub-category<br /> has a drop down for the different types.<br /> <br /> Hope I explained that OK.<br /> <br /> Jeff<br /> [/quote]<br /> <br /> Hello Jeff, <br /> <br /> You can limit categories not to be seen by users using the company separation.<br /> To do so, you will need to put all the users you want to limit in the same company, or you can create different limitations to different companies.<br /> You can find this option under preferences &gt; user management &gt; companies.<br /> <br /> Create or choose an existing company.<br /> <br /> From the companies properties page, go to the categories tab and choose the categories you want the end users to see.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/6792.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/6792.page</link>
				<pubDate><![CDATA[Wed, 18 Feb 2009 07:30:45]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Haim,<br /> <br /> Thanks for the prompt reply. Unfortunately we are all in the same company so to speak<br /> so that will not work.<br /> <br /> Is there no way to code the specific category into the HTML instead of using the drop-down<br /> selection list ? Seems a straightforward thing to do if you know the code .....<br /> <br /> i.e. replace <br /> <br /> $categorySelect<br /> <br /> With<br /> <br /> $category=("ConsumablesRequest")<br /> <br /> Or somthing like that ................. ( no idea what the code would be, just made that up )<br /> <br /> Jeff<br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/6797.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/6797.page</link>
				<pubDate><![CDATA[Wed, 18 Feb 2009 10:45:54]]> GMT</pubDate>
				<author><![CDATA[ Jeff Usher]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hey Jeff.<br /> <br /> 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.<br /> <br /> Is there a reason why you cannot re-organize the companies structure so it will fit the category limitaion needs?<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/6888.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/6888.page</link>
				<pubDate><![CDATA[Mon, 23 Feb 2009 02:13:14]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ These instructions don't seem to work with version 6.  Are there any updated instructions/HTML to add fields to the Submit Service Request in version 6?<br /> <br /> For example, here is the html entry to create the Title field on the Submit Service Page of the end user portal:<br /> <br /> [b][b]&lt;tr&gt;<br /> &lt;td  class="Form_Ctrl_Label"&gt;&lt;label&gt;<br /> $resource.getString('submit.title.caption'):&lt;/label&gt;&lt;/td&gt;<br /> td&gt;&nbsp;&lt;/td&gt;<br /> $titleSelect<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt;&nbsp;&lt;/td&gt;&lt;/tr&gt;[/b][/b]<br /> <br /> I don't see an entry for the command "$frm.printControl" anywhere in the Submit Service Request html file.<br /> <br /> All I want to do is add a new field below the title field that says "Local Ticket Number"<br /> <br /> Thank you, <br /> <br /> Justin Thompson<br /> <br /> (noob Sysaider)]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/9080.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/9080.page</link>
				<pubDate><![CDATA[Tue, 21 Apr 2009 12:01:21]]> GMT</pubDate>
				<author><![CDATA[ scumgrief]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ I was just trying to add a new field called 'Local Ticket Number' on the request form.  I followed the directions in the FAQ, but could not get that code to work-basically nothing happened.<br /> <br /> I entered a service ticket and they sent me code to try, which worked!<br /> <br /> They sent me this code:<br /> <br /> &lt;tr&gt;<br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString<br /> ('sr.cust_text1'):&lt;/label&gt;&lt;/td&gt;:<br /> &lt;td&gt;&nbsp;&lt;/td&gt;<br /> $frm.printControl('cust_text1', false, true, '')<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt;&nbsp;&lt;/td&gt;&lt;/tr&gt;<br /> <br /> Not sure what the difference was, maybe the & nbsp entry?]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/9238.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/9238.page</link>
				<pubDate><![CDATA[Mon, 27 Apr 2009 08:47:53]]> GMT</pubDate>
				<author><![CDATA[ scumgrief]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hey scumgrief,<br /> <br /> The instructions for version 6 has not been changed.<br /> The default fields were always built on a different way since the way we recommend adding the fields provide more customization options.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/9239.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/9239.page</link>
				<pubDate><![CDATA[Mon, 27 Apr 2009 09:06:11]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ What about adding fields based on selected category?<br /> <br /> For example:<br /> <br /> [quote]Category: HR<br /> Sub-category: New Employee<br /> <br /> Extra fields would be displayed if new employee should have email, voicemail, etc.[/quote]<br /> <br /> [quote]<br /> Category: HR<br /> Sub-category: Remove Employee<br /> <br /> Extra fields would be displayed to give options to remove email, voicemail etc.[/quote]<br /> <br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/9253.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/9253.page</link>
				<pubDate><![CDATA[Mon, 27 Apr 2009 15:56:52]]> GMT</pubDate>
				<author><![CDATA[ jlavetan]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hello jlavetan.<br /> <br /> If you wish to add specific texts to the End User Portal depending on which category or subcategory is selected, please edit the submit-service-request.htm file and change the following lines where you want the texts to appear:<br /> <br /> Exchange the "Category" and/or "Subcategory" for the categories you want it to appear on.<br /> <br /> #if($sr.getCategory()=="Category")<br /> Text to show when you select the above category<br /> #else<br /> $sr.getCategory()<br /> #end<br /> <br /> #if($sr.getSubCategory()=="Subcategory")<br /> Text to show when you select the above subcategory<br /> #else<br /> $sr.getSubCategory()<br /> #end<br /> <br /> Note: You need to put these blocks of code after the code for the category drop-down. Otherwise, the “if” statements will not know which category is selected and nothing will be done.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/9300.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/9300.page</link>
				<pubDate><![CDATA[Wed, 29 Apr 2009 09:23:33]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi -<br /> <br /> <br /> I added a field called "Call Back Number" with a blank text field. The only difference from the example is the bold CALL BACK NUMBER in the code. Without it I was getting just the colons for a field label.<br /> <br /> <br /> &lt;tr&gt; <br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt; <br /> $resource.getString('CallBackNumber')[b]Call Back Number[/b]:&lt;/label&gt;&lt;/td&gt; <br /> &lt;td&gt; &lt;/td&gt; <br /> $frm.printControl('cust_text1', true, true, '') <br /> &lt;/tr&gt; <br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/10591.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/10591.page</link>
				<pubDate><![CDATA[Fri, 12 Jun 2009 17:54:06]]> GMT</pubDate>
				<author><![CDATA[ Richnep]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hello Richnep.<br /> Welcome to the SysAid community.<br /> <br /> Please try to use the below syntax to add the "custom test 1" field.<br /> <br /> &lt;tr&gt;<br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;<br /> $resource.getString('sr.cust_text1')&lt;/label&gt;&lt;/td&gt;<br /> &lt;td&gt; &lt;/td&gt;<br /> $frm.printControl('cust_text1', true, true, '')<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt; <br /> <br /> To change the name of the field, please edit the translation file under preferences &gt; customize &gt; translate, save the file on your machine, edit it and look for the phrase "'sr.cust_text1" which you can change to any name you would like and then upload the file back to SysAid to apply the changes.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/10596.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/10596.page</link>
				<pubDate><![CDATA[Sun, 14 Jun 2009 02:54:40]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hello,<br /> Did this change in SysAid version 6.0.09?  Whenever I add the new path to Preferences &gt; Customize &gt; Appearance and make the changes to submit-service-request.htm I never see any of my updated changes. <br /> <br /> I'm simply trying to change the Urgency field to the Priority field.<br /> <br /> Any help would be greatly appreciated.<br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/11992.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/11992.page</link>
				<pubDate><![CDATA[Tue, 18 Aug 2009 15:00:57]]> GMT</pubDate>
				<author><![CDATA[ myjunkiepc]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ myjunkiepc ,<br /> <br /> I'm not sure why it is not working for you, please make sure you typed the full local path to the folder you have the custom HTML files and not to the exact file.<br /> <br /> If this is the way you configured it, please contact our support at <a class="snap_shots" href="mailto:helpdesk@SysAid.com">helpdesk@SysAid.com</a> so we will be able to further assist you.<br /> <br /> Best regards.<br /> Haim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/12008.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/12008.page</link>
				<pubDate><![CDATA[Thu, 20 Aug 2009 03:08:29]]> GMT</pubDate>
				<author><![CDATA[ Haim]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ HELP!!!<br /> <br /> How do I set a default Category and SUB category???<br /> <br /> I tried this:<br /> <br /> &lt;tr&gt; <br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt; <br /> Category:&lt;/label&gt;&lt;/td&gt; <br /> &lt;td&gt; &lt;/td&gt; <br /> $frm.printControl('problem_type',true,true,'Computer Problem') ; $frm.printControl('problem_sub_type',true,true,'General') <br /> &lt;/tr&gt; <br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> <br /> but it didn't work..]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/13413.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/13413.page</link>
				<pubDate><![CDATA[Tue, 20 Oct 2009 14:34:14]]> GMT</pubDate>
				<author><![CDATA[ Ricci]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ [quote=Richnep]Hi -<br /> <br /> <br /> I added a field called "Call Back Number" with a blank text field. The only difference from the example is the bold CALL BACK NUMBER in the code. Without it I was getting just the colons for a field label.<br /> <br /> <br /> &lt;tr&gt; <br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt; <br /> $resource.getString('CallBackNumber')[b]Call Back Number[/b]:&lt;/label&gt;&lt;/td&gt; <br /> &lt;td&gt; &lt;/td&gt; <br /> $frm.printControl('cust_text1', true, true, '') <br /> &lt;/tr&gt; <br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> [/quote]<br /> <br /> Hello, just curious to know if this worked in the End User Portal and if so where did you insert the string?<br /> <br /> Thanks,<br /> Jayson]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/13865.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/13865.page</link>
				<pubDate><![CDATA[Wed, 28 Oct 2009 19:23:54]]> GMT</pubDate>
				<author><![CDATA[ sqitis]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Ricci,<br /> <br /> I would suggest you contact support. They will be able to give you accurate instructions for this one.<br /> <br /> Cheers]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/13947.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/13947.page</link>
				<pubDate><![CDATA[Thu, 29 Oct 2009 23:50:26]]> GMT</pubDate>
				<author><![CDATA[ SysAid#1]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Have you also tried to use the #If as suggested.<br /> <br /> The customization in the "submit-service request" form is flexible. You should be able to get it going the way you want. have you asked for help from the support team??]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/14032.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/14032.page</link>
				<pubDate><![CDATA[Mon, 2 Nov 2009 05:02:38]]> GMT</pubDate>
				<author><![CDATA[ SysAid#1]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ This thread has been very helpful.  However, after implementing an initial request to remove some fields, my manager wants to add part of the field list back.  Let me explain:<br /> <br /> I was asked to remove the category fields (Category, Subcategory, Tertiary Category).  The rationale behind this was that our users struggle to select appropriate categories for their tickets (hence my signature).  I sucessfully implemented this by removing the following block of code from the submit-service-request.htm file:<br /> [code]<br /> &lt;tr&gt;<br />      &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('submit.category.caption'):&lt;/label&gt;&lt;/td&gt;<br />      &lt;td&gt;&nbsp;&lt;/td&gt;<br />      $categorySelect &nb-sp; &nb-sp; $subCategorySelect &nb-sp; &nb-sp; $thirdLevelCategorySelect<br /> &lt;/tr&gt;<br /> [/code]<br /> After reviewing the changes, I was asked to put the first category (Category) back on the page.  I guess my manager felt the users could select the right primary category.  So, I removed the tags for Subcategory and Third Category thinking this would remove the 2 extra combo boxes from the form.  So the block read like this:<br /> [code]<br /> &lt;tr&gt;<br />      &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('submit.category.caption'):&lt;/label&gt;&lt;/td&gt;<br />      &lt;td&gt;&nbsp;&lt;/td&gt;<br />      $categorySelect<br /> &lt;/tr&gt;<br /> [/code]<br /> To my surprise, all three were still there.  What can I do to hide the Sub Category and Third Category fields?  Keep in mind that I do not want to disable the Third Category completely since our administrators will be using this to provide the necessary detail for reporting on our service requests.  Also note, I verified the usual: Updated the Templates, I restarted the server, restarted my browser, deleted all browser cache and refreshed the page to make sure IE was not caching the old view.<br /> <br /> Thanks in advance!]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/14107.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/14107.page</link>
				<pubDate><![CDATA[Tue, 3 Nov 2009 15:11:18]]> GMT</pubDate>
				<author><![CDATA[ AVAce007]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ THis instructions does not seems to work for me on 6.5.06<br /> <br /> I'm trying to add the User Custom List 1  to the Service Request page and I can't or this is not working.   I have been trying to do it the same way as the department<br /> <br /> #if( $attributes.indexOf("department") &gt; 0)<br />         #set( $cnt = $cnt+1 )<br />         #set( $row = ($cnt % 2)+1 )<br />       &lt;tr align="$rb.getString('dir.left')"&gt;<br />       &lt;td &gt;&nbsp;&lt;/td&gt;<br />       &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$rb.getString('user.department'):&lt;/label&gt;&lt;/td&gt;<br />       &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$esc.escapeTextHtml($lists.departments.getCaption( $user.department), $charset)&lt;/label&gt;&lt;/td&gt;<br />       &lt;td&gt;&nbsp;&lt;/td&gt;<br />   &lt;/tr&gt;<br />     #end<br /> <br /> I just want to add the user.cust_list1 to the service request page for read]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/16877.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/16877.page</link>
				<pubDate><![CDATA[Thu, 4 Feb 2010 14:30:18]]> GMT</pubDate>
				<author><![CDATA[ Giga]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ You can use this as an example. <br /> <br /> &lt;tr&gt;                                                                            <br /> &lt;td <br /> class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('sr.cust_list1'):&lt;/label&gt;&lt;/td&gt;                                                                        <br /> &lt;td&gt; &lt;/td&gt;<br />                                                                                                                                 $selectSrList1<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/16882.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/16882.page</link>
				<pubDate><![CDATA[Thu, 4 Feb 2010 17:40:24]]> GMT</pubDate>
				<author><![CDATA[ SysAid#1]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ [quote=Haim]Hello jlavetan.<br /> <br /> If you wish to add specific texts to the End User Portal depending on which category or subcategory is selected, please edit the submit-service-request.htm file and change the following lines where you want the texts to appear:<br /> <br /> Exchange the "Category" and/or "Subcategory" for the categories you want it to appear on.<br /> <br /> #if($sr.getCategory()=="Category")<br /> Text to show when you select the above category<br /> #else<br /> $sr.getCategory()<br /> #end<br /> <br /> #if($sr.getSubCategory()=="Subcategory")<br /> Text to show when you select the above subcategory<br /> #else<br /> $sr.getSubCategory()<br /> #end<br /> <br /> Note: You need to put these blocks of code after the code for the category drop-down. Otherwise, the “if” statements will not know which category is selected and nothing will be done.<br /> <br /> Best regards.<br /> Haim[/quote]<br /> <br /> <br /> Hi Haim...<br /> <br /> Wich exactly is the code for the "category drop-down" in order to put my code below...<br /> <br /> Thanks in advance.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/20541.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/20541.page</link>
				<pubDate><![CDATA[Wed, 19 May 2010 09:04:30]]> GMT</pubDate>
				<author><![CDATA[ dxvxd]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ [quote=Haim]Hey Jeff.<br /> <br /> 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.<br /> <br /> Is there a reason why you cannot re-organize the companies structure so it will fit the category limitaion needs?<br /> <br /> Best regards.<br /> Haim[/quote]<br /> <br /> 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.<br /> <br /> This is the code i am using:<br /> <br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('submit.category.caption'):&lt;/label&gt;&lt;/td&gt;<br /> &lt;td&gt;&nbsp;&lt;/td&gt;<br /> &lt;td class="Form_Ctrl_Fields"&gt;&lt;table&gt;&lt;tr&gt;$frm.printControl('problem_type', true, true, 'Automated Requests') &nbsp;&nbsp; $subCategorySelect &nbsp;&nbsp; $thirdLevelCategorySelect&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt;&nbsp;&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;<br /> <br /> can anyone help]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/21075.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/21075.page</link>
				<pubDate><![CDATA[Thu, 3 Jun 2010 06:47:41]]> GMT</pubDate>
				<author><![CDATA[ CNXS]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi All,<br /> <br /> all you wrote doesnt work for me!<br /> <br /> I whant to remove the Urgency and Asset Field from the Service Request Form of the end UserPortal.<br /> <br /> I deleted the lines in the File: submit-service-request.html.<br /> Nothing happens!<br /> <br /> Reload & Restart the sysaidserver -&gt; noting happens!<br /> <br /> Please tell me how can i do this? Step by Step please.<br /> <br /> Thank you]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/21212.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/21212.page</link>
				<pubDate><![CDATA[Tue, 8 Jun 2010 05:08:11]]> GMT</pubDate>
				<author><![CDATA[ pguminski]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ pguminski, <br /> <br /> 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.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/21241.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/21241.page</link>
				<pubDate><![CDATA[Tue, 8 Jun 2010 11:32:26]]> GMT</pubDate>
				<author><![CDATA[ Brob2k1]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ <br /> Dear pguminski,<br /> <br /> Please edit your submit-service-request.htm file and search for this section.<br /> Delete the entire section and save a copy of this file.<br /> <br /> &lt;tr&gt;<br />                                               #if ($selectUrgency.getRequired())<br />                                               &lt;td class="Form_Ctrl_Label"&gt;$resource.getString('mandatory.sign')&lt;/td&gt;<br />                                               #else<br />                                               &lt;td class="Form_Ctrl_Label"&gt;&nbsp;&lt;/td&gt;<br />                                               #end<br /> 											  <br /> 						&lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('submit.urgency.caption'):&lt;/label&gt;&lt;/td&gt;<br /> 						&lt;td&gt;&nbsp;&lt;/td&gt;<br /> 						$selectUrgency<br /> &lt;/tr&gt;	<br /> <br /> Reload the file from Customize &gt; Appearance - &gt; Reload templates.<br /> Make sure the path is correct at the "HTML Files Location" field. <br /> login as a regular user and search this field.<br /> <br /> Please update this post if you still see the Urgency field.<br /> Thanks]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/21392.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/21392.page</link>
				<pubDate><![CDATA[Sun, 13 Jun 2010 06:16:54]]> GMT</pubDate>
				<author><![CDATA[ LiranCohen]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi Haim,<br /> <br /> I want to ask user to submit a Contact Person (First Name and Last Name) on the submit service request form.<br /> Either as one field "Contact:" in which he/she will write the first and last name, or as two fields "First Name: ", "Last Name: ".<br /> <br /> What is your suggestion here? Shall I use the custom text fields?<br /> <br /> 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 /> <br /> BR<br /> Panayotis]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/22258.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/22258.page</link>
				<pubDate><![CDATA[Thu, 15 Jul 2010 02:21:21]]> GMT</pubDate>
				<author><![CDATA[ pmatsinopoulos]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi ,<br /> <br /> As Haim replacement, not that I can, here is my suggestion,<br /> Use one field so you will have the second one for a different custom text if you will need in the future.<br /> <br /> Just copy this to your Submit-service-request.html file:<br /> <br /> &lt;tr&gt;<br /> &lt;td class="Form_Ctrl_Label"&gt; &lt;/td&gt;<br /> &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;Full Name:&lt;/label&gt;&lt;/td&gt;<br /> &lt;td&gt; &lt;/td&gt;<br /> $frm.printControl('cust_text1', true, true, '')<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> <br /> 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.<br /> <br /> <br /> Let me know if that helps you.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/22334.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/22334.page</link>
				<pubDate><![CDATA[Sat, 17 Jul 2010 16:36:47]]> GMT</pubDate>
				<author><![CDATA[ itayH]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hello<br /> 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.<br /> I have added the required text to the html file but I am not 100% sure I have added it in the correct place.<br /> 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.<br /> Many Thanks<br /> kim]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/22878.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/22878.page</link>
				<pubDate><![CDATA[Wed, 4 Aug 2010 06:46:50]]> GMT</pubDate>
				<author><![CDATA[ kimmey]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi Kim,<br /> <br /> In order to add the CC field please add the following to the Submit Service Request page:<br /> <br /> &lt;tr&gt;<br /> &lt;td&gt; &lt;/td&gt;<br /> &lt;td&gt;&lt;strong&gt;CC:&lt;/strong&gt;&lt;/td&gt;<br /> &lt;td&gt;$frm.printControl('cc')&lt;/td&gt;<br /> &lt;td&gt; &lt;/td&gt;<br /> &lt;/tr&gt;<br /> <br /> The location of these blocks can be anywhere in the Submit SR form, but they must be placed after a block is closed (&lt;/tr&gt<img src="http://www.ilient.com/Sysforums/images/smilies/8a80c6485cd926be453217d59a84a888.gif" />.]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/22920.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/22920.page</link>
				<pubDate><![CDATA[Thu, 5 Aug 2010 09:30:15]]> GMT</pubDate>
				<author><![CDATA[ itayH]]></author>
			</item>
			<item>
				<title>How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Hi itayH,<br /> <br /> Iwas using the CC field on the Submit Service Request page without any problem on sysaid 7.0.<br /> <br /> I've updated to version 7.5.03 and now the CC field with the browse button is not displaying.<br /> The code I've tried are:<br /> $frm.printControl('cc')<br /> $frm.printControl('cc', false, true, null)<br /> <br /> The output HTML is empty, no text field and browse button.<br /> <br /> Thank you for your help.<br /> <br /> -Nico<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/25530.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/25530.page</link>
				<pubDate><![CDATA[Mon, 6 Dec 2010 17:18:40]]> GMT</pubDate>
				<author><![CDATA[ Nico]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Dear Nico,<br /> <br /> 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 <br /> <br /> Thanks <br /> <br /> Inna ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/25542.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/25542.page</link>
				<pubDate><![CDATA[Tue, 7 Dec 2010 04:10:56]]> GMT</pubDate>
				<author><![CDATA[ Inna]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ SysAid v7.5.05 Enterprise Ed.<br /> IE 7 & 8<br /> <br /> 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".<br /> <br /> [code]<br /> #if($sr.getSubCategory()=="CMS" || $sr.getThirdLevelCategory()=="Add User")<br />             &lt;br/&gt;<br />             &lt;tr&gt;<br />                         &lt;td class="Form_Ctrl_Label"&gt;$resource.getString('mandatory.sign')&lt;/td&gt;<br /> 	        &lt;td class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('sr.cust_pc_setup'):&lt;/label&gt;&lt;/td&gt;  <br />                         &lt;td&gt;&lt;/td&gt;$frm.printControl('sr_cust_pc_setup', true, true, '')<br />                         &lt;td&gt;&lt;/td&gt;<br />             &lt;/tr&gt;<br />             &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> <br /> #end<br /> [/code]<br /> <br /> Is there something I'm missing?<br /> <br /> Mike<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/26352.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/26352.page</link>
				<pubDate><![CDATA[Tue, 1 Feb 2011 17:40:00]]> GMT</pubDate>
				<author><![CDATA[ Parkermc]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ Problem Solved. <br /> <br /> I had the incorrect name for the newly created field or control. <br /> <br /> [code]<br /> &lt;tr&gt;<br />          &lt;td class="Form_Ctrl_Label"&gt;$resource.getString('mandatory.sign')&lt;/td&gt;<br />    	&lt;td  class="Form_Ctrl_Label"&gt;&lt;label&gt;$resource.getString('sr.cust_pc_setup'):&lt;/label&gt;&lt;/td&gt;<br />    	&lt;td&gt;&nbsp;&lt;/td&gt;<br />    	&lt;td&gt;$frm.printControl('CustomColumn3sr',true,true,null)&lt;/td&gt;<br /> &lt;/tr&gt;<br /> &lt;tr&gt;&lt;td height="10"&gt; &lt;/td&gt;&lt;/tr&gt;<br /> [/code]]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/26462.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/26462.page</link>
				<pubDate><![CDATA[Mon, 7 Feb 2011 14:43:21]]> GMT</pubDate>
				<author><![CDATA[ Parkermc]]></author>
			</item>
			<item>
				<title>Re:How to - add additional fields to the &quot;submit service request&quot; page</title>
				<description><![CDATA[ EDIT: Please disregard this post!<br /> ]]></description>
				<guid isPermaLink="true">http://www.ilient.com/Sysforums/posts/preList/251/31142.page</guid>
				<link>http://www.ilient.com/Sysforums/posts/preList/251/31142.page</link>
				<pubDate><![CDATA[Mon, 10 Oct 2011 20:00:28]]> GMT</pubDate>
				<author><![CDATA[ xliv]]></author>
			</item>
	</channel>
</rss>
