Problem: You might want to use ionic native popups and alerts. Most of developers doesn’t realize how native javascript alert looks ugly until they see it on the device in build they made for te...Read More
Problem: You have page with at least 2 Apperyio services. You may want to call 3rd service only after both services finished its execution. Calling services one by one [crayon-5df0572790901339869223/]...Read More
Problem: You would like to login programmatically from your Apperyio app instead of using auto generated service. Solution: Below small snippet. Don’t forget to change dbId variable value to you...Read More
Problem: You would like to know what OS runs device launched your Apperyio application. Solution: I made a small js function for this. [crayon-5df0572791ddb792900077/]...Read More
Problem: You have big set of data you want to show, but instead of using select component or list you are seeking for alternative. Solution: The alternative is to implement autocomplete by this small ...Read More
Problem: You might want to do something custom: generate url params, add a calculation during success or just use simple jQuery.ajax instead of mysterious Apperyio REST Service. Solution: use small sn...Read More
Problem: You might want to show a person’s age in “YY MM DD” format in your Apperyio application. Solution: Use small snippet below. Javascript has no powerful tool when it comes to...Read More
Problem: Sometimes you need to know how much leap years you have for a certain period of years. Solution: Add small function listed bellow to you momentjs(v2.14.1) library. This is a simplest solution...Read More
Problem: You have a Select menu (dropdown) component with values. How can you read selected value from this Appery component programmatically ? Solution: use small snippet below. [crayon-5df057279347c...Read More
Problem: Sometimes during working with Appery Storage you may face problem to add a new item or remove an item from array variable. Solution: Below are 3 small functions, which extends each array stor...Read More
Problem: You may want to Select radiobutton programmatically in javascript or even toggle two radiobuttons in your Apperyio application. Sometimes you need to update entity your page based on users ac...Read More
Problem: You may want to update certain items in DB with jqm ajax or even pure javascript without services. Sometimes you have a need to update entity with custom ajax call. Solution: Use this small s...Read More