I cant able to get this jquery statement to work on page load but it works once when i refresh F5 the page.....

    <div id="ResultsDiv">

</div>
<div id="pager" class="pager">

</div>
    <input id="HfId" type="hidden" />
     <script type="text/javascript">
         var itemsPerPage = 5;
         $(document).ready(function() {
             getRecordspage(0, itemsPerPage);
             var maxvalues = $("#HfId").val();
             alert(maxvalues);
             $(".pager").pagination(maxvalues, {
                 callback: getRecordspage,
                 current_page: 0,
                 items_per_page: itemsPerPage,
                 num_display_entries: 5,
                 next_text: 'Next',
                 prev_text: 'Prev',
                 num_edge_entries: 1
             });
         });

</script>

On the initial pageload alert(maxvalues); is nothing... But when i refresh it shows the value of maxvalues which is in the hidden field HfId because it is assigned in the function getRecordspage....

Why this strange behaviour.... Any suggestion...

EDIT:

function getRecordspage(curPage) {
    $.ajax({
        type: "POST",
        url: "Default.aspx/GetRecords",
        data: "{'currentPage':" + (curPage + 1) + ",'pagesize':5}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(jsonObj) {
            $("#ResultsDiv").empty();
            $("#HfId").val("");
            var strarr = jsonObj.d.split('##');
            var jsob = jQuery.parseJSON(strarr[0]);
            var divs = '';
            $.each(jsob.Table, function(i, employee) {
                divs += '<div class="resultsdiv"><br /><span class="resultName">' + employee.Emp_Name + '</span><span class="resultfields" style="padding-left:100px;">Category&nbsp;:</span>&nbsp;<span class="resultfieldvalues">' + employee.Desig_Name + '</span><br /><br /><span id="SalaryBasis" class="resultfields">Salary Basis&nbsp;:</span>&nbsp;<span class="resultfieldvalues">' + employee.SalaryBasis + '</span><span class="resultfields" style="padding-left:25px;">Salary&nbsp;:</span>&nbsp;<span class="resultfieldvalues">' + employee.FixedSalary + '</span><span style="font-size:110%;font-weight:bolder;padding-left:25px;">Address&nbsp;:</span>&nbsp;<span class="resultfieldvalues">' + employee.Address + '</span></div>';
            });
    $(".pager").pagination(strarr[1], {
             callback: getRecordspage,
             current_page: 0,
             items_per_page: 5,
             num_display_entries: 5,
             next_text: 'Next',
             prev_text: 'Prev',
             num_edge_entries: 1
         });
            $("#ResultsDiv").append(divs);
            $(".resultsdiv:even").addClass("resultseven");
            $(".resultsdiv").hover(function() {
                $(this).addClass("resultshover");
            }, function() {
                $(this).removeClass("resultshover");
            });
            $("#HfId").val(strarr[1]);
        }
    });
}
link|improve this question

Need to see the getRecordspage function I suspect. – David M Apr 1 '10 at 10:56
Let's see getRecordspage(...) – Strelok Apr 1 '10 at 10:57
@David and @strelok see my edit... – Chendur Pandian Apr 1 '10 at 10:58
So, what's strarr[1] the first time the page loads and the $.ajax(...) is executed? – Strelok Apr 1 '10 at 11:00
@strelok strarr[1] is 17 when i alerted... – Chendur Pandian Apr 1 '10 at 11:01
show 1 more comment
feedback

3 Answers

up vote 2 down vote accepted

Your getRecordspage function is asynchronous. It makes an Ajax call which, when it completes, sets the value you are trying to read. However, you are not waiting for the call to complete before reading the value.

link|improve this answer
@David if i include with in success function my callback function gets called over and over.... – Chendur Pandian Apr 1 '10 at 11:19
@David suggest me how can i do it? – Chendur Pandian Apr 1 '10 at 11:31
@David got it to working async:false did the trick.... – Chendur Pandian Apr 1 '10 at 12:28
feedback

My guess would be that the $.ajax(...) success callback is being executed after the alert(maxvalues); is called. If that's indeed the case, just place your pagination code

$(".pager").pagination(maxvalues, {
     //my syntax
});

in the $.ajax(...) success callback.

link|improve this answer
@sterlok if i include with in success function my callback function gets called over and over... – Chendur Pandian Apr 1 '10 at 11:19
Post code as it is now pls. – Strelok Apr 1 '10 at 11:39
@sterlok now see my getrecordspage function... – Chendur Pandian Apr 1 '10 at 11:41
feedback

Without more information about your problem (missing functions, etc) the best advice is to tell you to use firefox and install firebug and firequery.

Then try to put some breakpoints and inspect values. Here's a tutorial

EDIT : made this answer before I saw your edit with more info.

link|improve this answer
@David i found no errors in firebug and web developoer toolbar... – Chendur Pandian Apr 1 '10 at 11:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.