whileprintingrecords;
numbervar subtotal;
subtotal := subtotal + ({@TotAmt})
Thursday, December 26, 2013
Wednesday, November 27, 2013
Another Way To addrow in datatable using Jquery
| Antecedents/Triggers | Consequences | Timing | Consistency | | ||||
Adding,Deleting Row in gridview using Jquery (Very Effective)
| Records | ||||||||||||||
| Company | Product | Model | State | City | Quantity | Contact Mail ID | Select | |||||||
Friday, November 22, 2013
Object Object , Json Parse Problem in jquery
success: function(msg) {
alert("{Pid:'"+ faram+"'}");
var orders =msg;
if (orders.length > 0) {
alert(orders.length );
test(orders);
}
function test(data)
{
for (i in data)
{
for (k in data[i]) {
alert(data[i][k]);
}
}
Saturday, August 31, 2013
LINQ Tutorials
http://www.codeproject.com/Articles/46422/A-LINQ-Tutorial-Adding-Updating-Deleting-Data
Wednesday, August 21, 2013
Asp.net Gridview Lazy Loading
http://www.go4coding.com/post/2011/04/11/Auto-loading-content-on-page-scroll-in-aspnet-using-jquery.aspx
http://aspsnippets.com/Articles/Loading-data-in-GridView-while-scrolling-down-in-ASPNet-using-jQuery-AJAX.aspx
http://aspsnippets.com/Articles/Load-on-demand-data-in-GridView-on-scroll-using-ASPNet-and-jQuery-AJAX.aspx
Wednesday, August 14, 2013
"Invalid JSON primitive" in JQery, Ajax
Data Should Be written in this form
if the argument is string
data:'{Pid:'+ JSON.stringify(faram)+'}',
or
data:"{Pid:'"+ JSON.stringify(faram)+"'}",
Success
success: function(msg) {
var orders =msg;
if (orders.length > 0) {
alert(orders);
To Show The Errors
error: function(xhr, textStatus, errorThrown) {
alert(xhr.status);
alert(errorThrown);
alert(xhr.responseText);
Subscribe to:
Posts (Atom)