Quantcast
Channel: Recent Discussions — DataTables forums
Viewing all articles
Browse latest Browse all 82117

Inline Select Show Current Value on Double-Click?

$
0
0
I'm using a drop-down select with inline editing. Prior to double-clicking the editable cell shows the current value, once I double-click, the select appears but it is defaulting to the first item in the list. Is it possible to either:
(a) have the drop-down default to the matching item in the select list that the cell contains, or
(b) dynamically replace the first element of the select list with the current item value?

Thanks,
--Tom

$(document).ready(function() {
  var oTable = $('#mtTable').dataTable( {
.
. (omitted for brevity)
.
    "fnDrawCallback": function ( oSettings ) {
      var that = this;
      /* Need to redo the counters if filtered or sorted */
      if ( oSettings.bSorted || oSettings.bFiltered )
      {
        this.\$('td:first-child', {"filter":"applied"}).each( function (i) {
          that.fnUpdate( i+1, this.parentNode, 0, false, false );
        } );
        setTimeout( function() {  
          \$(".editCat").editable("process_category_change.cgi?callletters=XXXX", {
            "callback":function(sValue,y) {
              var aPos = oTable.fnGetPosition(this);
              oTable.fnUpdate(sValue,aPos[0],aPos[1]);
            },
            tooltip: "Double-click to edit...",
            data   : "{'-1':'(clr)','0':' ','1':'A','2':'B','3':'C'}",
            type   : "select",
            event  : "dblclick",
            onblur : "submit",
            style  : "inherit"
          });
        },0);  
      }
    }
  } );
} );

Viewing all articles
Browse latest Browse all 82117

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>