tony

Forum Replies Created

Viewing 15 replies - 7,936 through 7,950 (of 7,977 total)
  • Author
    Replies
  • in reply to: jqGrid conflicts with DDAccordion #81974
    tony
    Keymaster

    Hi,
    I know what is the problem. If you look into the DDAccordion the plugin does not have any termination with ;
    Since the new release added ; before the plugin maybe this resolves the problem

    🙂

    in reply to: POST vs. GET #81971
    tony
    Keymaster

    You can change the url parameters to what you want.
    Use a setUrl method again with trigger(‘reloadGrid’) to do that.
    The page and etc parameters are passed additionally to the url – i.e if you have mypage.php?param1=dd&param2=aa the other are passed again with these.
    If you have array, then you can serialize the array to url parameters and pass them to the setUrl method.

    Regards
    Tony

    in reply to: Edittype:select problem in IE #81969
    tony
    Keymaster

    Hi,

    Does the select box work now in the new grid?

    As for the second problem:
    You can add a logic to save row when on select row is raised.
    In the example page see:
    Row editing -> Input Types
    Here you can do something like:

    onSelectRow: function(id){ if(id && id!==lastsel2){ jQuery('#rowed5').saveRow(lastsel2); jQuery('#rowed5').editRow(id,true); lastsel2=id; }

    Regards

    in reply to: CSS for inline edit not working in IE #81968
    tony
    Keymaster

    Hi,
    It is true. Will be corrected.
    Thanks.

    Regards

    in reply to: jqGrid conflicts with DDAccordion #81967
    tony
    Keymaster

    Pack all the pages (if possible include everything ) and send me it to my e-mail.

    in reply to: POST vs. GET #81965
    tony
    Keymaster

    You have a older version. Go in to download section and check
    Last Revision of jqGrid – i.e.

    http://www.trirand.com/jqgrid/js/jquery.jqGrid.js

    Regards
    Tony

    in reply to: Unable to display JSON Data? #81964
    tony
    Keymaster

    This can be achieved only if you use jsonReader. Please check the demos or wait a two days until the docs are ready

    Regards
    Tony

    in reply to: jqGrid conflicts with DDAccordion #81962
    tony
    Keymaster

    Hi,
    Have downloaded the ddAccordion and have placed it in my demos. All work ok. Since I can not reproduce the problem it will be very good (if possible of course) to give me a link to this.

    Regards
    Tony

    in reply to: POST vs. GET #81961
    tony
    Keymaster

    Hi,

    All this is not needed. You can just use a option mtype
    The call is

    mtype : “POST”

    The default value for this is GET

    Regards
    Tony

    in reply to: jqGrid conflicts with DDAccordion #81951
    tony
    Keymaster

    Hi,
    First try to isolate the problem.
    1. Does jqGrid work without DDAccordeon
    2. As I see you call is jQuery(‘table’).jqGrid(options). Is ‘table’ the id of the table or just table

    Regards
    Tony

    in reply to: Edittype:select problem in IE #81950
    tony
    Keymaster

    Hi Wouter,
    I really found some strange behavior on IE6 when clicking a row under some conditions. It is connected with grid as subgrid , but the reason is the same. Today I will what I can do 🙂

    Regards
    Tony

    in reply to: Edittype:select problem in IE #81948
    tony
    Keymaster

    Hi,
    For me all work fine in IE. Instead of that I will look again into the code.
    You can look at final prevew of jqGrid here:

    http://www.trirand.com/gridpreview/jqgrid.html

    Regards

    in reply to: Grid error in IE #81945
    tony
    Keymaster

    Hi,
    Try to put in first column in colNames some data – something like this:
    colNames:,
    instead of
    colNames:,

    in reply to: Help-How can remove all rows? #81943
    tony
    Keymaster

    To remove rows manually:


    var = id_s = jQuery("#table_id").getDataIDs();

    for(var i = 0; i < = id_s.length; i++)
    jQuery("#table_id").delRowData(id_s);
    }

    in reply to: why loadComplete not work? #81942
    tony
    Keymaster

    You can not do this way, but you can do this this way:

    1. loadComplete : function () { a },...
    function a () {alert(1)}
    or
    2. loadComplete: a,....

    var a = function() {alert(1)}

Viewing 15 replies - 7,936 through 7,950 (of 7,977 total)

Stay connected with us in your favorite flavor!