In this article, we will be creating TypeAhead Directive (Auto Complete) again in Salesforce However this time we will use AngularJs. Why we are using AngularJS ? We discussed already in one of article.
Getting Remote Data in JSON format using AJAX from:
To get data from remote source, we are using same code “Visualforce Account_JSON” and “Controller AccountJSONCreator ” explained in this article. Only thing I have added in wrapper class is ID field.
Other than AngularJs, we are also using Bootstrap in this article to make slick UI.
In this tutorial, I am going to explain very Simple AJAX and JSON based Auto Complete component with the help of JQuery UI. First I am assuming that you already have Static Resource of named “AutoCompleteWithModal“. This Static resource has all images, CSS and JQuery library needed to implement this component.
This article will explain the safe way to submit the forms using JQuery. It will avoid accidental double submission.
This tutorial will explain one of the ways to avoid accidental submissions of form using the JQuery and Ajax. While developing the web application this is the most common bug ignored by the newbies.
I will use the JQuery library and the Ajax to accomplish this behavior.
Disable inputs after submit to avoid double submission using JQuery
Servlet, Hibernate, jQuery and Ajax based google like chat with source code
Hi, In this article, my aim is to create an application which uses the concept of Hibernate in Servlet with Ajax support of Jquery.
Below figure can give you the idea of final look and feel of the complete application:
Servlet, Hibernate, jQuery and Ajax based google like chat
Tutorial on creating Ajax Based Multiselect JQuery Autocomplete User Control in ASP.Net
In this article i will explain step by step creating Ajax Based Multi select JQuery Autocomplete User Control.
Here, we will use Jquery UI Tool’s Autocomplete Control. To get the Data using AJAX, here we will try Handlers of ASP. Using Handlers against simple asp.net page is that, if we will use ASPX page then it will go through all the phases of page (nearly 1o) whereas Handler is faster than ASPX page.
Ajax Based Multiselect JQuery Autocomplete Control in ASP.Net
Using JQuery and Ajax to expand and collapse the row in ASP.NET
This article describes how to expand and collapse rows of a GridView or Table and showing data details using Jquery and Ajax
Introduction:
Now day’s , important issue with web applications is how quick a wed page is rendered and how it is animated or visualized
So for quick reply from server Ajax is the solutions and for some visualizations with server side response we mostly use jquery or javascript.
I this article, for exp
anding , collapsing and adding details to gridview row we are going to use AJAX to make call to server and we will visualized it using jquery.
Aim
1. Getting details of product by extracting details at the next to current row and before second one.
2. Visualizing the expanding of rows.
3. No server side postback.
4. Using GridView Control to bind data and simple data binding to table using scriptlet.
Using Jquery Code
Expanding Row :
For expanding any row, we need to create an new row with the serverside details and then we will add it to the next of current row
var trindex=0; //trindex hold row index created by jquery
$("tr").click(function() {
if ($(this).find("td:first").length > 0) { //check whether it is header or content row
//row index increment to assign new row id everytime
trindex++;
//create a row with td colspan 3 to show product description
var row= '><td class="currRow" colspan="3" ><
div id="did"><img id="imagepath" src=""
style="height: 81px; width: 104px" /> Description :<
span id="des">sd</span><p>Cost :<
span id="cost">sd</span></p></div></td></tr>';
//adding animation to row
var newRow = $("<tr id=tr"+ trindex + row).animate({
height: "140px",
opacity: 0.25,
}, 500);
//adding row to existing table
$(this).after(newRow);
Collapsing Row :
At the same moment we expand any row, we collapse previous created row, so we need to remember the previous created rowIndex or it’s id.
$("#"+rowName).find('td').removeClass('currRow').addClass('hideRow');
$("#"+rowName).animate({
height: "0px",
opacity: 0.25,
}, 1000, function() {
$("#"+rowName).remove();</pre>
<h5>Ajax Call to the server :</h5>
For getting the full details about our shortly highlighted product, we need to make a asynchronous call to
server using AJAX. We are passing some key values to server(product Id) to extract the resultset.
<pre>$.ajax({
type: "POST",
url: "WebService.asmx/GetDetails", //webserviceName/methodName
data: "{'name': '" + $(this).find("td span").text() + "'}", //passing values to webservice(productid)
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
//extrating response data to newly created row
$("#tr"+trindex ).find("td #did p #cost").text(msg.d.id );
$("#tr"+trindex ).find("td #did #des").text(msg.d.order);
$("#tr"+trindex ).find("td #did #imagepath").attr('src', msg.d.order);
//$("#myImage").attr("src", "path/to/newImage.jpg");
},
error: FailedMessage //showing error message if failure
});
Using The WebService.cs
Programmable application logic accessible via standard Web protocols.We are using webservice to extract data from database using jquery Ajax call. CollectData class to hold extracted details from db.
public class CollectData
{
public string cost { get; set; }
public string imagePath { get; set; }
public string description { get; set; }
}
Simple queries to the database via WebMethod
[WebMethod()]
public CollectData GetDetails(string name)
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConnectionString"].
ConnectionString);
SqlCommand cmd = new SqlCommand("Select cost, imagePath, description from Products where ProductId='" +
name + "'",con);
SqlDataReader data;
CollectData c = new CollectData();
try
{
con.Open();
data=cmd.ExecuteReader();
if (data.Read())
{
c.cost= data[0].ToString();
c.imagePath = data[1].ToString();
c.description = data[2].ToString();
return c;
}
else
{
c.cost = "N/A";
c.imagePath = "N/A";
c.description = "N/A";
return c;
}
}
catch (Exception ex)
{
c.cost = "N/A";
c.imagePath = "N/A";
c.description = "N/A";
return c;
}
}
Conclusion :
We have mixed up Jquery, Ajax, server Control(Gridview ) to get quick and visualized output. Result can be little bit change as per the browsers.