Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Different select options for each row? #199

Open
alexwenbj opened this issue Jan 7, 2019 · 2 comments
Open

Different select options for each row? #199

alexwenbj opened this issue Jan 7, 2019 · 2 comments

Comments

@alexwenbj
Copy link

Can I add different options for each row cell?for example, column 1 row 1 has options A/B/C and column1 row 2 has options C/D/E? Thank you in advance.

@crivadavi
Copy link

Sure, in the function initializeGrid supposing that your column name is '"color" you can set an EnumProvider with a new function to set the select values as a function of the row.

EditableGrid.prototype.initializeGrid = function() {
   this.setEnumProvider("color", new EnumProvider({ 
        
      // the function getOptionValuesForEdit is called each time the cell is edited
      // here we do only client-side processing, but you could use Ajax here to talk with your server
     // if you do, then don't forget to use Ajax in synchronous mode 
     getOptionValuesForEdit: function (grid, column, rowIndex) {	         
           if (rowIndex == 4) return { "bl" : "Blue", "rd": "Red", "yl" : "Yellow" };
           else if (rowIndex == 5) return { "or" : "Orange", "wh": "White", "bk" : "Black" };
           return null;
           
           // or write whatever is your logic depending on the row
      }
    }));
}

@alexwenbj
Copy link
Author

alexwenbj commented Jan 13, 2019

Thank you .But my options are pull from the server side, return with the data.
My workaround is to custom the setCellRender() function:

this.setCellRenderer("charge_id", new CellRenderer({render: function(cell, value) {
 var str = "<select name='charge_id' class='form-control' onchange='JavaScript:test(this);'><option value='-1'>--Select Something--</option>";
  $.each(value, function( idx, vl ) {
  str += "<option value='"+idx+"'>"+vl+"</option>";
  });
  str +="</select>";
  cell.innerHTML = str;
 }}));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants