Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

Create additional UI Page variable and pass to form field

MBarrott
Mega Sage

I'm adding a string variable to the entity_funding UI Page, this will need to be passed to and referenced on the Demand form. 

 

The pop-up from the Create a Demand UI Action displays this new field but I'm uncertain how to pass and process this data to a field on the Demand form. 

 

Added variable in the HTML/XML field:

				<div id="cer-field"> <!-- **************** start **************** -->
					<div class="form-group is-filled is-required">
						<div nowrap="true" type="string" choice="0" data-type="label">
							<label class="col-sm-12 col-md-4 control-label">
								<span class="required-marker label_description"></span>
								<span class="label-text">${gs.getMessage('CER#')}</span>
							</label>
						</div>
						<div class="col-sm-12 col-md-6 form-field input_controls">
							<div class="input-group">
								<span class="input-group-addon input-group-select" style="min-width:20px;">
									<span style="position:relative; display:inline-block">
										<select name="string" id = "cer#" class="form-control" style="min-width:20px;" disabled="disabled">
										</select>
									</span>						 
								</span>
								<input name="cer#" id="cer#" class="form-control decimal"/>
							</div>
						</div>
						<div class="col-sm-12 col-md-2 form-field-addons"></div>
					</div>
				</div> <!-- **************** end **************** -->

 

 

 

0 REPLIES 0