vote up 0 vote down star

I have a jqGrid script like that:

jQuery(document).ready(function() {

var startDate = $("#startDate").Val();
jQuery("#sandgrid").jqGrid({
    url: "/Deposit/Search?startDate='" + startDate + "'",
    datatype: 'json',
    mtype: 'GET',
    height: 255,
    width: 700,
    colNames: ['Index', 'Name', 'Code'],
    colModel: [
	        { name: 'item_id', index: 'item_id', width: 65 },
	        { name: 'item', index: 'item', width: 150 },
	        { name: 'item_cd', index: 'item_cd', width: 100}],

    pager: jQuery('#sandgridp'),
    rowNum: 10,
    rowList: [5, 10, 20, 50],
    sortname: 'item_id',
    sortorder: "desc",
    viewrecords: true,

    caption: 'My Grid'
});

});

In the view, there also have a input text box:

         <td>
             <% Html.jQuery().DatePicker()
                .Name("startDate")
                .Render(); %>           
        </td>

What I want to do is to pass the value from "startDate" to call jqGrid's url: "/Deposit/Search?startDate='" + startDate + "'". But it seems the data does not pass into the url. WHat is the issue? Is any other approach available for doing a searching function with jqGrid?

Thanks a lot!!

flag

31% accept rate

1 Answer

vote up 0 vote down check

Set new url and then reload grid:

jQuery("#sandgrid").jqGrid().setGridParam({url : '/Deposit/Search?startDate=' + $("#startDate").datepicker('getDate')}).trigger("reloadGrid")

link|flag
Thanks, LukLed! But it seems I cannot get the newUrl correctly. Do you have any idea where I possible am wrong in the Javascript file above? – Liang Wu Oct 10 at 23:05
Changed some code and now it should work. – LukLed Oct 10 at 23:07
Thanks again, LukLed! But $("#startDate").datepicker('getDate') seem to return null. – Liang Wu Oct 11 at 1:34
I guess that is because the script called after the submit, so the field value is not retained any more. – Liang Wu Oct 11 at 1:50
LukLed, your code is correct. Thanks! I need to use ViewData to store the value after submit. – Liang Wu Oct 11 at 2:09
show 1 more comment

Your Answer

Get an OpenID
or

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