Jquery | How to create/edit Jquery Datatable dynamically

| By Webner

How to create/edit Jquery Datatable dynamically? HTML code: <div class=”col-md-12 col-sm-12 col-xs-12″> <table id=”table”> <tbody> <tr> <th>Rules</th> </tr> </tbody> </table> </div> <button id=”go”>Go</button> Here is the javascript function: function addData() { var data=[this array contains all the values that we

Moodle | Add and access custom elements in Blocks

| By Webner

In Totara how to add custom HTML elements (checkboxes, input boxes etc) and then access the value selected by user on server side: 1. Adding custom elements. 2. Accessing values of custom elements. Each problem is discussed below: Overview: In Totara,

Salesforce Mobile iOS SDK | Retrieve the list of objects from salesforce

| By Webner

Salesforce Mobile: Retrieve the list of objects from salesforce in iOS native mobile app Description: Using the salesforce mobile iOS-native SDK we can retrieve the list of objects using “requestForDescribeGlobal” SDK method. This method will return the data of all

Shopify webhook getting fired multiple times and then getting deleted from shopify store

| By Webner

In our Shopify store we have an order creation webhook that points to a cakephp action URL. The action that webhook points to fetches the order data and then saves this to the database. The problem that we were facing

Why Hadoop and Big Data are getting popular

| By Webner

Surprisingly, over 90% of the data in the world today has been created only in the last couple of years. With the revolution in mobile industry, social media networks, sharing of digital photos and videos online we are continuing to

CakePHP | How to handle special characters (like apostrophes) in queries

| By Webner

Let us take an example: We have table employees with following fields: id int primary key, name varchar(50), city varchar(50) We have following records in the table: (1, isha, amr); (2, Hamlet’s, ghy); (3, éhjj, amr); 2nd and 3rd records