Hi ,
I am trying to build a SAS report in HTML, where in have text boxes to get the data from the user and save it into a data set and then displayed the saved data from the dataset in another page.
for eg, if I am querying for a particular primary key field from the dataset, if that field exist, then should display all the row details into the corresponding textboxes wherein I have the option to edit.
I am able to get the form details into macro variables using JavaScript and below code:
<script>
put' var mobile = document.getElementById("mobile").value;';
<\script>
to get the value of mobile number entered in html page to the global macro variable mobile.
But I am unable to perform the reverse.
assign the value of the macro variable into the html textbox element so that I can display the value on the frontend.
I am using the following code but not working yet
<script>
put' document.getElementById("mobile").value="&mobile";';
</script>
it displays &mobile in the textbox field.
if I use without the double quotes, sas throws an error that the variable mobile is not defined.
Kindly provide a resolution at the earliest.
Kindly
SAS does not evaluate macro triggers inside of single quotes. Use double quotes instead. Embedded double quotes need to be doubled up.
data _null_;
put " document.getElementById(""mobile"").value=""&mobile"";" ;
...
Thanks a lot Tom, the resolution worked, also I was able to achieve the same using cards4 format.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.