dluis

Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Author
    Replies
  • in reply to: Column resize mark position #101644
    dluis
    Participant

    I'm using Bootstrap 3 and I needed this to correct that same issue. The main problem until now with Bootstrap 3 is the “box-sizing:

    in reply to: Search + ComboBox + Is Null #99029
    dluis
    Participant

    It is a easy fix to the code.

    Line 6166 jquery.jqgrid.src.js:

    ruleOperatorSelect.bind('change',function() {

    rule.op = $(ruleOperatorSelect).val();

    trpar = $(this).parents(“tr:first”);

    var rd = $(“.input-elm”,trpar)[0];

    if (rule.op === “nu” || rule.op === “nn”) { // disable for operator “is null” and “is not null”

    rule.data = “”;

    if(rd.tagName.toUpperCase() != 'SELECT')

    in reply to: MilliSeconds ignoring ‘0’ in DateFormat of JQGrid #99028
    dluis
    Participant

    Did you check the output from the server? I don't think that datefmt accepts de time… at least when you use the validations for date.

    in reply to: MilliSeconds ignoring ‘0’ in DateFormat of JQGrid #99006
    dluis
    Participant

    How can you use datefmt with time? I have trying and always getting an error when trying to save when creating a new record.

    Can you post your colmodel code please?

    in reply to: Problem jqgrid insise jquery UI tabs #98774
    dluis
    Participant

    Try setting a geral font size because Jquery UI uses EM has font size.

    dluis
    Participant

    Did some debuging and after reading the code I realise that doing a reloadAfterSubmit:true in the delOptions of the pager would work for what I wanted.

    What happens is that the AjaxCall for the Delete completes after the removing of the row in the Grid.

    Since I wasn't reloading the grid, the GridComplete was being fired in the delRowData (only removes the row visualy). After that the complete of the Ajax would finish and since I didn't set to reload after delete, it would then clean the selection made.

    if(rp_ge.reloadAfterSubmit && $t.p.datatype != “local”) {

    $($t).trigger(“reloadGrid”);

    } else {

    var toarr = [];

    toarr = postdata.split(“,”);

    if($t.p.treeGrid===true){

    try {$($t).jqGrid(“delTreeNode”,toarr[0]);} catch(e){}

    } else {

    for(var i=0;i<toarr.length;i++) {

    $($t).jqGrid(“delRowData”,toarr);

    }

    }

    $t.p.selrow = null;

    $t.p.selarrrow = [];

    }

    Tony,

    Is it really needed this reset (in delGridRow)

    dluis
    Participant

    I'm having the same problem with version 4 of JQGrid.

    What I found was that after a trigger(“reloadGrid”);

    in reply to: Single search is not available #98028
    dluis
    Participant

    Tony,

    I'm talking about

    in reply to: Single search is not available #98024
    dluis
    Participant

    I have the lastest version on GitHub (after reading http://www.trirand.com/blog/?p&#8230;..ialog-box/ ) and it still not ok.

    The screenshot was taken with yesterday version, and I just downloaded the todays version and still have the same problem with {multipleSearch : true}.

    For simple search is ok.

    Thanks Tony.

    in reply to: Search Select Dropdown not Work in New 4.0 #98021
    dluis
    Participant

    Try this:

    in reply to: Single search is not available #98020
    dluis
    Participant

    I'm having the same problem with the layout in Multisearch with version 4 of JQGrid. If I change to 3.8 the problem goes away.

    Any one have a solution for this?

    in reply to: TreeGrid 20 Rows Limit #97219
    dluis
    Participant

    Thanks. I thought that since there is no pagination on TreeGrids the RowNum wouldn't be necessary.

    The line 1272 of grid.base.js:

    if(ir==rn) { break; }

    Should have in account if is a TreeGrid, and if yes, shouldn't break.

Viewing 12 replies - 1 through 12 (of 12 total)

Stay connected with us in your favorite flavor!