|
Results |
|
SBM Version Diff
Differences Between Versions ... requireAppend && GetFieldValue (objname) ... ... ) value = GetFieldValue (value) ... ... ) value = GetFieldValue (value) ... ... var fieldValue = GetFieldValue (fieldName) ... ... var fieldValue = GetFieldValue (fieldName) ... ... + value = GetFieldValue (value) ... ... + fieldValue = GetFieldValue (fieldName) ... = GetFieldValue (fld. ... ... requireAppend && GetFieldValue (objname) ... // subrelational fields are already ... ... ) value = GetFieldValue (value) ... ... ) value = GetFieldValue (value) ... ... var fieldValue = GetFieldValue (fieldName) ... ... var fieldValue = GetFieldValue (fieldName) ...
|
|
|
SBM Version Diff
Differences Between Versions ... contents = ( GetFieldValue (objname, ... ... var contents = GetFieldValue (objname, ... ... var fieldValue = GetFieldValue (fieldName) ... ... ) value = GetFieldValue (value) ... = GetFieldValue (fld. ... ... contents = ( GetFieldValue (objname, ... ... var contents = GetFieldValue (objname, ... } function GetFieldValues (objname, ... GetFieldValue ('F ... ... +// subrelationals must wipe previous ... ... var oldvalues = GetFieldValues ('F ... ... var newvalues = GetFieldValues ('F ... ... ) value = GetFieldValue (value) ... ... var fieldValue = GetFieldValue (fieldName) ... ... ) value = GetFieldValue (value, ...
|
|
|
SBM Version Diff
Differences Between Versions ... } -function GetFieldValue (objname, ... +function GetFieldValue (objname, ... ... } -function GetFieldValue (objname, ... +function GetFieldValue (objname, ... ... var val = GetFieldValue (objname, ... ... contents = ( GetFieldValue (objname, ... ... requireAppend && GetFieldValue (objname) ... ... requireAppend && GetFieldValue (objname) ... ... var val = GetFieldValue (objname, ... ... var contents = GetFieldValue (objname, ... ... var value = GetFieldValue (objname, ... ... } -function GetFieldValue (objname, ... +function GetFieldValue (objname, ... ... } -function GetFieldValues (objname, ...
|
|
|
Getting the text value of a dropdown or selection list with appscript sample code. How to use GetDisplayValue for list values.
Working with dropdown or selection lists with AppScript it's often times helpful to retrieve the actual text value of the list that is selected. By default people seem to use the GetFieldValue () function but with AppScript this returns the ID number of the selected item and not the actual text. Unlike the GetFieldValue() javascript function where it by defualt returns the text value.
|
|
|
How to make a more user friendly error message display on your form when using a synchronous orchestration that displays a fault.
var strError = GetFieldValue ("ErrorMsg"); if(strError) { if(strError.indexOf("5000")>=0)
|
|
|
How to avoid submitting duplicate auxiliary items in SBM 11.1+
function customChangeCallback() var theVal = GetFieldValue (theField); var theurl = "tmtrack.dll?JSONPage&command=jsonapi&JSON_Func=getitemsbylistingreport&JSON_P1=" + theReport + "&hasruntimeparams=1&" + theFieldId + "=" + theVal
|
|
|
When using email submit and I map the body of the email to one of my fields all I see is non rendered html with a bunch of Microsoft tags.
The code below has been altered a little since the video was created to accommodate plain text emails also being used. Call Shell.Item. GetFieldValue ("Description",originalstring) ' If the next line is not greater than 0 then this is plain text email so skip
|
|
|
How to select a tab based on a field value in Business Mashups
Step by step switch GetFieldValue ( "ISSUETYPE"
|
|
|
If a form field equals a certain value, require a file be attached before a transition can happen. Sample app script.
dim myvar If Not Shell.Item. GetFieldValue ("Title", myvar) Then ' Error finding the field or reading from it
|
|
|
How to use javascript to compare the currently logged in user to another user field like Submitter.
var x = GetFieldValue ("EditBox").replace(/^\s+|\s+$/g, '') ;
|
|
|