HemaRajendran1
3 years agoQrew Trainee
Pipeline
Hi Folks,
Scenario: We have a Formula - Rich text field(Button) which calls a code page to create consultation appointments for a day.The below is the code used in the code page.
Code:(NumberOfSlots and Minutes are user Input fields)
function makeAppt(){
getInfo();
var time = 0;
for(i=0;i<stack.NumberOfSlots;i++){
if(i==0) {
time += parseInt(stack.Minutes, 10);
$.get(addurl + time);
console.log(time);
}
}
Question: Is it possible to create this logic in Pipeline? Please help
Thanks
------------------------------
Hema
------------------------------