我在dhtmlx grid table中有2列。
我想用dropdown menu为每个单元格填充第二列。

我正在xml document中生成C#generated xml中的C#文档:

<rows>

  <head>
    <column type="ed" width="205" sort="str">Product</column>
    <column type="co" width="205" sort="na" id="last">Class</column>
  </head>

 <row id="1">
   <cell>Product_name_1</cell>
   <cell>
    <select>
      <option id="1" value="1">first_option</option>
      <option id="2" value="2">second_option</option>
    </select>
   </cell>
 </row>

 <row id="2">
   <cell>Product_name_2</cell>
   <cell>
    <select>
      <option id="3" value="4">first_option</option>
      <option id="4" value="4">second_option</option>
    </select>
   </cell>
 </row>

</rows>
HtmlJavascript code:
<body>
<div id="mygrid_container" style="width:1026px;height:500px"></div>
<script>
    var mygrid;
    $(document).ready(function () {
        $.ajax({
            url: "/Admin/XMLForProducts",
            dataType: "json",
            type: "GET",
            data: {},
            success: function (result) {
                mygrid = new dhtmlXGridObject('mygrid_container');
                mygrid.init();
                mygrid.parse(result, "xml");
            }
        });
    });
</script>
</body>

在这种情况下,我只是在第一列中填充值(Product_name_1Product_name_2),而我没有在每个单元格的下拉菜单中获取第二列,因此我不打算解决此问题。

最佳答案

  • 您需要在xml中使用某种转义空格字符。例如

  • 代替:
        <cell>
            <select>
              <option id="3" value="4">first_option</option>
              <option id="4" value="4">second_option</option>
            </select>
           </cell>
    

    你需要:
    <cell><![CDATA[<select><option id="3" value="4">first_option</option><option id="4" value="4">second_option</option></select>]]></cell>
    

    这是有关在xml中处理特殊字符的教程:
    http://docs.dhtmlx.com/doku.php?id=others:special_characters_in_xml
  • 我们也不建议在网格中使用html输入。
    您可以尝试使用“combo” exCell。

  • 在这里,您可以找到一个现成的示例:

    http://www.dhtmlx.com/docs/products/dhtmlxGrid/samples/13_interaction_other_components/01_pro_combo.html

    和一个教程:http://docs.dhtmlx.com/doku.php?id=dhtmlxgrid:how_to_use_new_excell_combo

    关于c# - DHTMLX网格:使用下拉菜单填充单元格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16871935/

    10-11 23:24