Sunday, December 30, 2018

Tuesday, December 18, 2018

NFI and FFI Difference

NFI(Native Function Integration) programming code for application has been created in native(android application).we can access through the native package to  Kony. (like predefined Program). AAR if a full package with UI all widget created in Kony as like JSON obj. FFI (Foreign Function Integration) jar contains functionality.we have to insert it in kony third-party ...

Thursday, December 13, 2018

Calender widget Validation

//Type your code here function SdateLoad(){   var today = new Date();   var dd = today.getDate();   var mm = today.getMonth()+1; //January is 0!   var yyyy = today.getFullYear();   if(dd<10) {     dd = '0'+dd;   }   if(mm<10) {     mm...

Sunday, December 9, 2018

component: add it programmatically?

refer:https://basecamp.kony.com/s/feed/0D56A00000Rb7MCSAZ Sample Code using Tabs component: var tabs = new com.konymp.tabstextline( { "clipBounds":true, "id": "tabstextline", "isVisible": true, "zIndex": 1 }, {}, {}); Form1.flx.add(tabs); ...

Wednesday, December 5, 2018

Without contract / with contract in components

1) Masters 1.0 (Now deprecated) No controllers 2) Components without contract Always has controller Instances always show complete widget hierarchy as in source No custom events All properties can be overwritten in instance 3) Components with contract Always has controller Instance doesn't show any hierarchy (unless explicitly exposed) Custom events Control over what properties can be overwritten...

Tuesday, December 4, 2018

How to take IOS build in kony

 How to take ios build in Xcode (Kony) ? 1.Take IOS build (KAR file is generated). 2.Add latest plugins from visualizer (path:  visualizer ->open file location -> plugins -> search(ios plugin and copy)). 3.Transfer plugins(we get plugins as JAR file [Rename as .Zip])...

Monday, December 3, 2018

Segment expandable view single row only open at the time sample

var gblHfd =""; function onrowclickofseg(){   var cisshow;   var selectedIndex= frmQA.Seg.selectedRowIndex[1];   if(frmQA.Seg.selectedRowItems[0].flxQA2.isVisible === true){     cisshow = false;     //gblHfd = "";   }else{     cisshow = true;     //gblHfd = selectedIndex;   }   if(gblHfd !== ""){     var obj1 = {"flxQA1":{isVisible:true},"lblQ":{isVisible:true,text:"Explain...

Saturday, December 1, 2018

How to create SQLite Database & access with in Kony

Before refer below code check: SQLite_App its easy to understand /***************************************************************** Name    : createDB Purpose : To create the database with employee_details table  ******************************************************************/ function...