tony

Forum Replies Created

Viewing 15 replies - 5,701 through 5,715 (of 7,981 total)
  • Author
    Replies
  • tony
    Keymaster

    Hello,

    1. onclickSubmit is not a part from jqGrid parameters, but of the particular add/edit/del parameters. Refer to docs how to use this.

    2. Do not see what pickdatetime3 function do.

    Regards

    Tony

    tony
    Keymaster

    Hello,

    We have as options

    in reply to: Formedit caption bug #86767
    tony
    Keymaster

    Hello,

    Could you please post the code?

    Regards

    Tony

    in reply to: Insert line break when inline editing in a textara #86722
    tony
    Keymaster

    Hello,

    One possible solution is not to use a Entaer key to store the data, but rather a custom button. See the examples.

    Regards

    Tony

    in reply to: the bar with next page link and Row(s) #86721
    tony
    Keymaster

    Hello,

    Maybe this will resolve the problem.

    Open the grid.css file find the item

    div.scroll

    Remove this definition:

    display : none;

    from this item.

    Let me known if this resolves the problem.

    Regards

    Tony

    in reply to: sort not working #86720
    tony
    Keymaster

    Hello,

    Seems that all is correct. Did you mean sort is not correct or at all does not work?

    What result do you have?

    Which version of jqGrid do you use?

    Regards

    Tony

    in reply to: Hidden Subgrid with no data #86719
    tony
    Keymaster

    Hello,

    Already answered of this.

    REgards

    Tony

    in reply to: set a range for datepicker #86718
    tony
    Keymaster

    Hello,

    Not a jqGrid problem.

    Regards

    Tony

    tony
    Keymaster

    Hello,

    Download the latest version 3.5 alfa 3 from GitHub.

    in format options add formatoptions: { idName:'MyIDName'…}

    in order to add your custom id name.

    Regards

    Tony

    in reply to: Col Sort Image NOT changing when resorted by code #86714
    tony
    Keymaster

    Hello,

    Try with sortGrid method. See docs.

    Regards

    Tony

    in reply to: Help with getGridParam #86713
    tony
    Keymaster

    Hello,

    After this line

    var sortCol = $(”#agelist”).getGridParam(”sortname”);

    if you have make alert(sortCol) what is the result.

    Maybe you should check you code sidx=+sortCol – what is sidx – from where you have this value? What you expect from this expression. IMHO it will not work

    Try first to construct you string and after that make the link.

    Regards

    Tony

    in reply to: Hide plus image subgrid if no data #86712
    tony
    Keymaster

    Hello,

    There was a similar post but.

    If you have record (field) in the master where you have information about the children in the subgrid you can use afterInsertRow to clear the plus for the subgrid something like (suppose you have field childrecords in colModel)

    afterInsertRow: function(rowid, aMasterRow) {
    if(parseInt(aMasterRow.childrecords,10) === 0) {
    // remove the plus from subgrid
    $(“td.sgcollapsed”,”#”+rowid).empty().unbind('click');
    }
    }
    If you do not want to remove the plus just use unbind.

    Enjoy

    Tony

    in reply to: Edit form, div always shows at the top. #86711
    tony
    Keymaster

    Hello,

    See this forum for this error. There are a couple of such posts. One possible solution – include jqModal.js and jqModal.css – maybe you missed the CSS file.

    Regards

    Tony

    in reply to: How to remove jqGrid. #86709
    tony
    Keymaster

    Hello,

    Consult the docs. There are two options (in grid.custom.js)

    1.GridDestroy

    2.GridUnload

    Regards

    Tony

    in reply to: access jqGrid data and functions in child window #86708
    tony
    Keymaster

    Hello,

    Forgot that window.opener.document.getElementById('list') return object and not string.

    Try :

    $(window.opener.document.getElementById('list')).getDataIDs()

    instead.

    Regards

    Tony

Viewing 15 replies - 5,701 through 5,715 (of 7,981 total)

Stay connected with us in your favorite flavor!