Add link in Field help Netsuite - netsuite

Can I add a link/url in field help of a custom field in NetSuite.

Yes. Make sure you wrap the text you set for the custom field's help display setting in html tags.
<html>Custom item field help with a link. Web site</html>
As mentioned in the help for Setting Display Options for Custom Fields:
In the Help field, enter a brief description of the kind of
information you want entered in the field.
The help is available when the name of the field is clicked.
You can enter HTML in the field. Be sure to begin your markup source
with <html> and end with </html>.

Related

How to add the note in the history tab for a NetSuite form?

Every time I edit the form, there is no any text appears in the "NOTES" field of "History" tab.
Please refer to the following picture:
How can we add notes for the update?
You cannot. That field is automatically set by Netsuite and we don’t have access to it

How do I make a field conditional based on an answer in SharePoint 2013

I have a SharePoint 2013 list which has an "Other" drop down list. I would like to make a field conditionally appear if the user selects "other" within that list. I know that I can have the field appear fillable but my boss does not want that. They would like it so that the specify box only appears when "other" is selected. Is there an easy way to do this OOTB or with SharePoint Designer?
Thanks in advance.
Kim
You can do it using Nintex forms, by Rules Engine. Please refer below links.
Show/Hide fields in Nintex
If you don't want a Nintex form, You can add a content Editor/Script editor in the page, and capture the On Change event of the Drop down. So that you can Show/Hide any fields. In this case, you can get the any field values by its title. The DOM element title for all the fields is same as the "Title" (Display text) of the field. If the field is "Required", the field DOM element title will like "<"Required">". For example Title field DOM element will be a input field with the type of Text and the title property of the element will be "Title Required" . So you can get the value by using it.
For Ex:
My Field Name is "Other" and it is required and Type of DropDown. If i need to capture the onchange event of the field means i need to do like below.
$(select[title='Other Required']).change(function() {
if(this.val()=="")
{
//your code goes here
}
});
If that field is not required.
$(select[title='Other']).change(function() {
if(this.val()=="")
{
//your code goes here
}
});
Hope this helps you. Let me know if this helps.
Thanks.

ITextSharp and nested form fields

I need some help to fill a pdf, given by a customer with ITextSharp.
I have a problem with a field that is similar to a radio button.
If I try to list all the fields of my form I can't easily find which field I have to fill and the allowed values.
I've tried to inspect the form with iTextRUPS:
Can someone help me to find a way to fill these kind of fields ?
Thanks in advance for your help.
Best regards
Fabrizio

Netsuite - add custom field to Purchase Order

Hi I want to add a custom field to NetSuite. Please guide me how to do this. NetSuite has lack of Documentation.
I tried adding a New Body Field and New Column Field, none of them add that value to the interface.
Please help me on
How to add a custom field
how to link that custom field to Purchase Order Object.
Thanks in advance...
You can create a new Transaction body field under
customization > List, Record & Field > Transaction Body Fields > New
then on the on Applies To tab you can check Purchase and on the Display tab you can set the subtab where you want that custom field to be displayed. for example say main tab.
Hope this will help you setting up your custom field :)
My guess is that you have created the field, but haven't assigned the field to a record type. Click the Applies To subtab and check the boxes of the records where you want the field to display.

Custom Picker Editor Control

I have lookup column, but the data in this column is very large.I want to create a custom picker control like (people editor control) in sharepoint.
Please help me.
Thanks,
You'll have to create a custom field type to achieve that.
Information from the source: http://msdn.microsoft.com/en-us/library/cc889345(office.12).aspx

Resources