Category: Salesforce
Salesforce | SOQL OFFSET clause is not supported in this organization
In Salesforce, we can limit the records returned by the soql query using LIMIT and OFFSET clauses. In our case where we tried to fetch salesforce Product records by using “Salesforce Rest API” using the following query: $query = “Select
PHP | core.php and some important settings
In CakePHP application, core.php is configuration file and is located at app/Config/core.php. This file contains various variable definitions and constant definitions that alter the behavior of the application. The description of some important variables and their effect on the application
Moodle | This page should automatically redirect
In my plugin code I was trying to redirect from one page to another page using redirect as follows: redirect(“success.php?cd=”.$id); Redirecting to the other page was working but during redirection an intermediate page was being displayed like this: On click
HTML Media Capture
How to access Camera and upload the image/video to server? We can achieve above requirements easily by using HTML Media Capture : <form action=”upload.php” method=”post” enctype=”multipart/form-data”> Capture Image: <input type=”file” name=”uploadedfile” accept=”image/*” capture=”camera”> <input type=”submit” value=”Upload”> </form> To capture Audio
Captivate | Show instant feedback on selecting an an option in quiz question
In Adobe Captivate on a question slide if we want some feedback to be displayed instantly when user clicks radio button to select an option, it will not work. There is no option out of the box to achieve this.
Java | super keyword in Java
Should super() be the first method call in constructors, if yes why? What can go wrong if this were not the case? Explain with example. super() is a keyword in java which is used to refer to immediate parent class
Moodle | How to create a scheduled task in moodle
In moodle we can create scheduled tasks which will run after a defined interval. We also have cron jobs in moodle but they usually run after every minute so if we need to run a task after a particular time
Adobe Captivate | Mathematical Symbols and Expressions
How to add exponents in Adobe Captivate 9 In one of our Adobe Captivate projects, we had a requirement to add mathematical exponents. Here is what we wanted to achieve: Writing “x raised to the power of 2” (exponents) Look
Adobe Captivate | How to add quiz questions into question pool
Adobe Captivate is a tool which helps in creating attractive E-learning content such as courses and quizzes. One of the most useful feature that Adobe captivate provides to its user is question pool. Quiz questions can be added to question
