jQuery EasyUI datagrid | How to solve “no text wrapping” problem

| By Webner

See the screenshot below : Line no 7 and 8 indicate problems due to no word wrapping Solution : Use Javascript property ‘nowrap=false’ in your datagrid creation. Code : <table id=”dg” title=”Activity Info” class=”easyui-datagrid” style=”width:100%;height:81%” toolbar=”#toolbar #searchtoobar” nowrap=”false” rownumbers=”true” fitColumns=”true”

Database Connectivity with Selenium Webdriver

| By Webner

How to connect to Mysql in Selenium script? Step 1: Import Mysql connector (JDBC driver): Download connector from: Find-ur-pal Download this jar file and import in Eclipse : MySQL-connector-java-5.1.18-bin.jar Follow these steps in Eclipse: Add the downloaded Jar to your

JavaScript/HTML | Get Id of inner child element

| By Webner

Suppose from html code below we want to get id of each <a> element inside home_menu. <ul id=”home_menu” class=”appendmenu” style=”float: left”> <li> <span class=”arrow sep”>►</span> <a id=”breadcrumb_mainc3″ style=”cursor:pointer;color:#087bb1;”>Programming Courses</a> </li> <li> <span class=”arrow sep”>►</span> <a id=”breadcrumb_sc34″ style=”cursor:pointer;color:#087bb1;”>Javascript </a> </li> <li>

Netsuite | Authentication/Login to Netsuite sandbox account through java code using Netsuite WSDL

| By Webner

Authentication/Login to Netsuite sandbox account through java code using Netsuite WSDL In order to login to your sandbox Netsuite sandbox account via code, you need to have below files handy: 1. Netsuite sandbox WSDL: The latest version of wsdl can

Salesforce | How to call apex method using Javascript

| By Webner

We can call apex method from javascript using JavaScript remoting. Javascript remoting has three main parts : 1. Invoke remote method written in javascript method on Visualforce page. 2. Remote apex method contains an annotation @RemoteAction. 3. The response handler