kshfi

Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Author
    Replies
  • in reply to: how can I integrate a datetimepicker to jqgrid #85343
    kshfi
    Participant

    I have used
    http://www.kelvinluck.com/assets/jquery/datePicker/v2/demo/

    You need

    from that page. Ex. if you have edit line in grid then

    … grid config:
    onSelectRow: function(id, selected){
    if(id && id!=lastsel){
    jQuery('#navgrid').restoreRow(lastsel);
    jQuery('#navgrid').editRow(id,true,fldevent);
    lastsel=id;
    }
    },

    // datepicker event
    function fldevent(id){
    // if you like to ui.datepicker
    //jQuery(”#”+id+”_changedate”,”#navgrid”).datepicker(
    //

    in reply to: export data from the grid issue #85341
    kshfi
    Participant

    3.4beta2 include export grid conf.

    jqGridExport(options) – export the the current grid configuration to the desired format
    $(”#mygrid”).jqGridExport({exptype:”xmlstring”});
    will export the current grid configuration as xml string

    $(”#mygrid”).jqGridExport({exptype:”jsonstring”});
    will export the current grid configuration as json string

    ex.

    jQuery(”#gridconf”).click( function() {

    in reply to: Make an example.html for everything. #85280
    kshfi
    Participant

    http://trirand.com/jqgrid/jqgrid_demo.zip include demos html files.

    in reply to: I need Cell links but with disabled onrowselect. #85117
    kshfi
    Participant

    I have also some ideas when onSelectRow has done.

    Main idea is that if

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

Stay connected with us in your favorite flavor!