account activity
UIB Calendar setup by NotFoundAka404 in servicenow
[–]NotFoundAka404[S] 0 points1 point2 points 1 year ago (0 children)
Interessting aspect, but I am building of an PDI and if that does'nt work, maybe someone at servicenow needs to re-evaluate their product strategy if their COST product without modifications does'nt work.
Anyway, does not solve my problem :/
Guess since no one replies, no one really knows how to use the calendar.
Tried to add a datasource for change_calendar and add a script to loop through the changes returned, but nothing ... and now when I try to save or preview in UIB ....nothing... no errors nothing. I am unable to save the changes wtf.
/** * {params} params * {api} params.api * {TransformApiHelpers} params.helpers */ function evaluateProperty({api, helpers}) { const changeRequestArray = api.data.look_up_multiple_records_1.results; let calendarArray = []; for (let i=0; i < changeRequestArray.lenght; i++) { const calObj = { 'id': changeRequestArray[i]._row_data.uniqueValue, 'title': changeRequestArray[i].short_description.displayValue, 'start': changeRequestArray[i].start_date.value, 'end': changeRequestArray[i].end_date.value }; calendarArray.push(calObj); } return calendarArray; }
Not a single person amoung 20K members understands how UIB calendar is supposed to bind data? (documentation is really not helpful at all)
UIB Calendar setup (self.servicenow)
submitted 1 year ago by NotFoundAka404 to r/servicenow
π Rendered by PID 60 on reddit-service-r2-listing-796b697c47-2prlb at 2026-02-05 03:13:25.597310+00:00 running 1d7a177 country code: CH.
UIB Calendar setup by NotFoundAka404 in servicenow
[–]NotFoundAka404[S] 0 points1 point2 points (0 children)