[Forums] Bulk Upload of Excel Data to Outsystems Database
Am Confused,Can you share me the oml file with sample bulk uploadThe Cuan wrote:# Once the binary extracted to records/rows, the rows can be retrieved.# The values of the dropdown / drop1 ( to...
View Article[Forums] unabe to load PDF Document(Need help urgent)
Joey Moree wrote:in this component they want binary content.we dont want to implement HTML2PDF.is there any other wayAh I see, so the binary you are getting from GetRequest_Submit, is the current...
View Article[Forums] unabe to load PDF Document(Need help urgent)
Ah I see, so the binary you are getting from GetRequest_Submit, is the current page!A page, is built using html, thus when getting the binary you are getting a .html file and not a .pdf file.I was...
View Article[Forums] web responsive
Is there any exercise that can help me making web screens responsive in web apps?
View Article[Forums] Need login credentials!Not able to login
Amreen Shaikh wrote:Hi Atul,I am not able to log in. Please provide login credentials or make the app anonymous.Regards,AmreenUserName - superadmin and Password :- Qaz121wsx for the demo.You can assign...
View Article[Forums] web responsive
Hey Domingues,I have already gone through this video. but that was not enough. I created a login web screen but its not responsive. how to do the same?
View Article[Forums] unabe to load PDF Document(Need help urgent)
Joey Moree wrote:A html file? This probably means there has been an error somewhere.Perhaps something is going on with the GetRequest_Submit action....What's the content of this html file? Are you able...
View Article[Forums] web responsive
Hi Avneet Taneja,I've done a 100% responsive system, so I used the Dublin theme and made some adaptations at hand, using isPhone(), isDesktop() and isTablet(). From there, you will be able to have your...
View Article[Forums] Validation: numbers entered must start with 6, 8, or 9
If your goals is only validation then regex is your friend:http://refiddle.com/refiddles/5cbef8db75622d10f36f0000If you truly wish to prevent people from entering it, input masks is a good one, though...
View Article[Forums] Validation: date selector – any date earlier than 18 years ago...
Is this for a mobile or web app? What widget are you using?
View Article[Forums] How to invoke registerBackNavigationHandler?
Shreyas Bhondve wrote:Shreyas Bhondve wrote:assif_tiger wrote:Hi Shreyas Bhondv,A friendly reminder to you regarding the OML you uploaded. You might be associated with an enterprise Company for the...
View Article[Forums] Generate numbers: pull out birth year, generate running number,...
You can fetch the year/month/day by doing:Year(DateTime) Month(DateTime) Day(DateTime)For running number you can go a few routes you could fetch the previous entry for the same year and add 1 to that...
View Article[Forums] Generate numbers: pull out birth year, generate running number,...
Hi YS Yeo,If you have the birth date you can always use the functionYear() It will return an Integer.I hope this helps.
View Article[Forums] Validation: numbers entered must start with 6, 8, or 9
https://www.outsystems.com/forge/component-overview/647/custom-input-masks
View Article[Forums] Validation: numbers entered must start with 6, 8, or 9
You can doSubstr(IntegerToText(number), 0, 1)To get the first digit
View Article[Forums] Generate numbers: pull out birth year, generate running number,...
Assume you want to automatically generate membership numbers. Rules as such:The first four digits is the year of birth in YYYY format.The last four digits is a running number by year.For example,...
View Article[Forums] Light Processes Under The Hood
Question on this,What happens to the record in ossys_BPM_Event if a process has finished correctly? (eg actually reaching an end node).Currently running in a problem where my BPT gets an exception...
View Article[Forums] Validation: date selector – any date earlier than 18 years ago...
Hi,The datapicker has a property called MinDate that you can use to accomplish that:Regards,Marcelo
View Article[Forums] How to catch event when click on cell?
Duc Nguyen wrote:Hi all,Please give me the way to catch event when click on cell.Thank you very much.Hi there Duc.Can you to explain better your problem please?You would like the number of column and...
View Article[Forums] Validation: only alphanumeric characters in an input field (without...
Hi,To accomplish that you always need JavaScript. If you are not comfortable with it you can use a component that wraps the JavaScript for you. One example is this component.Regards,Marcelo
View Article