tony

Forum Replies Created

Viewing 15 replies - 7,096 through 7,110 (of 7,981 total)
  • Author
    Replies
  • in reply to: bugreport : safari reload fails #83704
    tony
    Keymaster

    Hello,

    Maybe this is the problem, but if you open the demos and reloads all

    is OK – right?

    I will investigate this.

    Thank you

    in reply to: bugreport : safari reload fails #83701
    tony
    Keymaster

    Hello,

    Sorry do not test the link that you write.

    Yes there is problem. I will see what is this.

    Thank you

    Regards

    Tony

    in reply to: bugreport : safari reload fails #83700
    tony
    Keymaster

    Hello,

    Just now I write this from Safari 3 Win. I do not see any error when testing

    the demos

    I'm sorry, but I do not have Mac to test.

    Regards

    Tony

    in reply to: extending the headers with searchboxes ? #83698
    tony
    Keymaster

    Hello,

    It is not exactly what you ask, but it is costumizable and can be put in

    the toolbar. Maybe I will finish it at end of week.

    Regards

    Tony

    in reply to: add timeout support for ajax requests — patch included #83696
    tony
    Keymaster

    Hello,

    If you want to send some addition please send me via e-mail:

    tony at trirand dot com

    Regards

    Tony

    in reply to: Subgrid and Autocomplete #83703
    tony
    Keymaster

    Hello,

    I'm sorry for the bad post – this tottaly is wrong.

    Also try in function autocomplete_field function just to put alert and see

    if it lunches. If this is the case, then check the input parameters if they are

    correct.

    Regards

    Tony

    in reply to: New ver 3.3 Cell Editing error: No url is set #83695
    tony
    Keymaster

    Hello,

    I have put the 3.3 version for download. You should wait a little until the docs are ready.

    In you case there is another option for this

    cellurl :'someurl'

    Use this and all wil be ok

    Regards

    Tony

    in reply to: Date Columns #83688
    tony
    Keymaster

    Hello,

    If I understand right your JSON data looks like this

    “some_dt”: '1223140084550'

    and you expect that the grid will format it in some date format.

    Remember jqGrid is more server oriented and task like this should be done server side in most cases.

    jqGrid does not have cellrendering features. (It uses already formated)

    This is not trivial task

    1. We need to known the source format and

    2. We need to set our desired format.

    Instead of this you can format data your own way – just use afterInsertRow event and setCell method – something like this

    afterInsertRow: function(rowid, cellrow) {

    jQuery(“#mygrid”).setCell(rowid,'some_dt',myformater(cellrow.some_dt));

    }

    function myformater(src)

    {

    //perform here your formt

    return new_formated_value

    }

    Also refer to example pages for ths

    Best Regards

    Tony

    in reply to: Save preferences #83687
    tony
    Keymaster

    Hello,

    Not sure, but when you define the pager in gridparameters,

    do not use

    pager : jQuery(“#mypager”),

    but

    pager :”#mypager”

    If this does not help try to store jQuery(“#mypager”) in variable.

    Regards

    Tony

    in reply to: Receiving respose #83686
    tony
    Keymaster

    Hello,

    As I explain in my previous post the afterSubmit function should return

    certain values. Just try this

    afterSubmit: function(serverStatus, aPostData) {

    in reply to: extending the headers with searchboxes ? #83685
    tony
    Keymaster

    Hello,

    There will be similar method soon.

    Regards

    Tony

    in reply to: Subgrid and Autocomplete #83681
    tony
    Keymaster

    Hello,

    try this

    ondblClickRow:function(id){

    in reply to: Force Colour of Selected Row #83680
    tony
    Keymaster

    Hello,

    I will try to prepare example of this.

    Regards

    Tony

    in reply to: How to add an “a link” in a column #83679
    tony
    Keymaster

    Hello,

    Any help is welcome.

    Regards

    Tony

    in reply to: Receiving respose #83678
    tony
    Keymaster

    Hello,

    You should not compare this way

    if(ret[0]==false) since this is internal array instead use this

    afterSubmit: function(serverStatus, aPostData){

    var respuesta = serverStatus.responseText;

    var mydata = eval(“(“+respuesta+”)”) ;

    if (mydata[status] == false) { // or mybe mydata[status] == 'false'

    return [false,mydata[message],””];

    else { return [true,””,””]; }

    }

Viewing 15 replies - 7,096 through 7,110 (of 7,981 total)

Stay connected with us in your favorite flavor!