Tag: iOs
Software Testing | Understanding Severity & Priority
While testing the Web applications, Software and Projects, sometimes we cannot perform the full test scenarios and bug fixes due to shortage of time or due to project running out of time. A lot of bugs and errors could be
Test cases generation and bug report generation in salesforce
In case you would like to create test cases or record bugs inside Salesforce you can create custom objects for this. Steps for test cases object creation: Select->Setup->create object->new custom object Then we can add custom fields and relationships or
Salesforce Mobile iOS SDK | Retrieve the list of objects from salesforce
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
Salesforce | Show Loading on AJAX request and disappear after completing its progress.
Solution : In many scenarios, apex button click sends an AJAX request (for e.g. to render a part of Visualforce page after completing its progress). Sometimes the AJAX request takes so much time. To cope with this issue we have
iOS | Inconsistent Status Bar in iOS Phonegap Application
Problem : Header goes under the status bar and menu button is not clickable in Phonegap/Cordova Application. Solution : In the iOS version 7.0, App View covers full screen including the status bar, and the view starts from top of
iOS | How to get installed app package names
Here is the code to get names of app package installed on iOS devices: include objc/ runtime.h in your viewController.m include <objc/runtime.h> – (void)GetInstalledApps { Class LSApplicationWorkspace_class = objc_getClass(“LSApplicationWorkspace”); NSObject* workspace = [LSApplicationWorkspace_class performSelector:@selector(defaultWorkspace)]; NSArray *array = [workspace performSelector:@selector(allApplications)]; NSMutableString
Restrict back button of browser using Struts2
Follow the steps below to restrict back button of the browser: 1. Make a custom filter class as shown below. 2. Implement Filter (in-built interface) 3. Override “doFilter” method present in the Filter interface: public class NoCacheFilter implements Filter {
Android | How to get list of all the apps installed on Android device
In one of the mobile app we were required to get the list of all the installed applications on user’s mobile. This was possible but due to security reasons first of all you need to prompt app user to allow
JQuery | Check/uncheck the radio button on click using jquery
When we click radio button, it gets checked. Once it gets checked it doesn’t get unchecked when again clicked. We can use checkbox for checked/unchecked status of input, but sometimes requirement arises when we need to use radio button for