Hi Palak, the challenge i am getting is that I am only able to select "Empty" from the list of templates not even getting the templates to show the warning. Thats what makes me think i may not have set something up correctly.
[Forums] New v11 Screen Templates not showing
[Forums] Error Feedback Message Not Disappearing automatically
Hi Guys,
I am using the built-in feedback message to display error message. Apparently I notice that it does not disappear like the success message. I am using dublin template.
Is there a way to set a time or adjust the behavior same as the success feedback message?
regards,
Mike
[Forums] New v11 Screen Templates not showing
Hi Daniel,
I have tried to create one sample web app using TopMenu_Template. (v11)
Also I have created a new web screen and it popped up ready made templates to choose from.
One thing to check is whether you are getting warning icons while selecting theme templates or not.
Please check below image.
If you are getting these warning icons that means your templates will not be rendered perfectly and you will not see results as expected.
Refer to this URL for more details about compatibility or screen templates and modules.
Regards,
Palak Patel
[Forums] how to add comments in a page
Hi Ankita,
Can you check PassengerId you are using to insert comments, is exists in the Passenger Entity. i believe passengerId is nullidentifier(), what value you are passing in querystring "PassengerId".
Thanks,
Balu
[Forums] Outsystems 11 -- New release
wrote:
I love the Web Blocks with Events but I'm missing something similar for popup windows. Should we continue to use the (now deprecated) NotifyGetMessage in the screen that created the popup after using Popup_Editor_Notify and Popup_Editor_Close in the popup?
Hi Marcos,
Regarding Popup_Editor_Notify and Popup_Editor_Close, only the first action is using the method NotifyWidget. This means that you still have to use the NotifyGetMessage. We will consider to update the Popup_Editor_Notify action in order to work with block events, thank you for the heads up!
Keep sharing your feedback and let us know if you have further questions :)
Cheers,
Sara Gonçalves
[Forums] how to add comments in a page
wrote:
wrote:
You CAN'T save a comment BEFORE creating a new Passenger.
And if it is a NEW passenger, even after you create it, the value in PassengerId (the input parameter) will still be zero.
So, you have to guarantee that no comments can be added to the passenger before it is created, and guarantee that the input parameter PassengerId is updated with the ID returned by the CreateOrUpdate action that saves a new record in Passenger.
Cheers.
Can you please ellaborate a little more and how to update the PassengerId
What Eduardo is saying, is that you need to have a Passenger already created, so that you can have a PassengerId to create a comment!
The most likely problem, Eduardo is keen to point, is that the value of PassengerId (screen input) is not updated after creating the Passenger.. This means, you'll be assigning a null Id to the PassengerComment you're trying to create!
Are you experienced with debugger? Could really help you here :)
Add a breakpoint there (click right button), start debugging, in tab locals watch PassengerId value :)
Good luck
[Forums] Running a feedback_message before a download
Hello
I am trying to implement an action which runs a feedback message, before exporting an excel file.
It seems that if the action ends with a download, the feedback message will not show.
Is there away around this problem? I've considered using a widget click in the action, but I'm not sure this approach will work.
Thanks
[Forums] Dependencies don't load
In https://www.outsystems.com/home/downloads/110/ you can find a newer version 11.0.110.0 ..
[Forums] Input Mask Web: Not Masking the Input
Thank you Jose and Balu. I did not notice that I swap values for the input id and mask. Wish I could mark both solutions.
Cheers
[Forums] Dependencies don't load
What's even more funny, when I create a support case, I see a lot more and higher P11 versions of service studio than the one you get when you download 'the latest' version from the download page, I have and get the 11.0.109.0 version, but there are already a couple more new versions, I understand they have some in beta, but would be nice if we had the possibility to download one of the new beta's .. i'm really stuck now in my training :-(
[Forums] OneSignal HTTP 400 Bad Request
[Forums] Dependencies don't load
Having the same problem here, doing the online dev course for mobile developer and a lot of things don't work right, dragging a entity attribute to a screen crashes the p11 environment, now did an change to the ToDo_Core thing and my ToDo main won't load anymore but is stuck on checking dependencies, also loading a second edit screen never stops the initial load .. I think they missed some stuff while doing the beta testing ..
[Ideas] Add iPhone X in preview
Hi,
I think would be a good idea add iPhone X in mobile preview.
Regards,
[Forums] The INSERT statement conflicted with the FOREIGN KEY constraint "OSFRK_OSUSR_71O_PASS
wrote:
P.S.
You CAN'T save a comment BEFORE creating a new Passenger.
And if it is a NEW passenger, even after you create it, the value in PassengerId (the input parameter) will still be zero.
So, you have to guarantee that no comments can be added to the passenger before it is created, and guarantee that the input parameter PassengerId is updated with the ID returned by the CreateOrUpdate action that saves a new record in Passenger.
Cheers.
How can I guarantee that no comments can be added to the passenger before it is created and guarantee that the input parameter PassengerId is updated with the ID returned by the CreateOrUpdate action that saves a new record in Passenger?
[Forge] Product Catalog
[Forge] Web Event JavaScript Extensibility
[Forge] REST Extender
This library allows you to read and manipulate the values in the Response and Request of a REST API.
Designed to be used in the OnBeforeRequestAdvanced and OnAfterResponseAdvanced callback methods of a consumed REST API.
Following functions are available:
- OnAfterResponseAdvanced
- GetAllCookies
- Returns a list of all the cookies in the current response
- GetCookieByName
- Return a specific cookie, identified by a name, from the current response
- GetAllCookies
- OnBeforeRequestAdvanced
- SetCookies
- Pass in a list of cookies to set before sending the request to the consumed API
- SetContentType
- Default content type set by OutSystems is "application/json; charset=UTF-8"
- This function allows you to explicitly set the content type, i.e. "application/json"
- SetCookies
[Forums] New v11 Screen Templates not showing
wrote:
Hi Daniel,
Did you check dependencies of OutSystemsUIWeb ?
Because all these templates are rendered from that I believe.
I have all of the OutSystemsUIWeb (and Template_TopMenu) items referenced to make sure i pick everything up.
[Forums] New v11 Screen Templates not showing
Hi Daniel,
Did you check dependencies of OutSystemsUIWeb ?
Because all these templates are rendered from that I believe.
[Forums] Add custom properties to swagger.json definition file
Actually, I found a way to extend the swagger definition. I just forgot to post the solution here. Here is how it goes:
First, I added the information I needed on the webservice action description field using a tag and a yaml definition
Then, I've created an eSpace that has two ScreenActions, one to generate the new swagger.json definition and another to generate the new documentation (We will get into detail on this one later on)
When the ScreenAction that generates the new swagger.json definition is called, it grabs the default swagger definition, generated by the outsystems platform, extracts the custom yaml definition from the service description using the OutDoc API, and finally merges the two for the final result (I had to create an extension to merge two jsons)
Since the new swagger.json is not compatible with the outsystems automatic generated documentation, I've created a second ScreenAction, that uses the SwaggerUI default implementation, to generate the newly swagger definition.
There are some improvements and tweekes that could be done, but some of them would depend on the outsystems platform modification. For example, I first wanted to use the comment component to generate the custom definition, but it turns out that outdoc doesn't have acces to them, so I used the description field instead. This would maintain both the new an old documentations active if needed.
I also thought that it would be nice so that I could identify a "SetStatusCode" action call and automatically create the documentation output, but again, I couldn't access this level of detail from the OutDoc API.
Another improvement is to create a rewrite filter so that when the default outsystems documentation is reached, the call would be rewritten to access the new SwaggerUI definition. This one does not depend on outsystems changes and could be done in IIS with the rewrite module for example.
Automatically Include the default Outsystems Platform REST status code responses.
Caching would be something to consider too.
I wanted to transform all this on a forge component, but I really lack time for it.
Anyway, I hope it helps you to solve your problem.