Grid and Combo integration

I’m confused about dhtmlxGrid and dhtmlxCombo integration. First I found in documentation that XML should looks like this:



acombo/php/complete.php



but, then I found this site: dhtmlx.com/docs/products/dht … combo.html and there is no word about such xml.



How it should be done to set URL of xml?

Sorry for misleading information in documentation.
�urrent version provides new syntax for combo integration.   You can set combo mode only in tags. You set tags with path to combo xml  inside tags
 
The current syntax of combo-in grid is next
 
1) In cells you can set only default “values” of options.
 

  1
  1
  Austria
 

 
 
2) Combo options list set in header only:
 
- by options tags:

   
        Column 1  
            one
             …
            ten
       
 
- by source tag with path to combo xml
 
 Column
      data.xml
 
 
3) To set “selectbox” mode you have to use tag  and “false” as its value:
 
     <column type=“combo” …>Selectbox Mode
           false
           data.xml
     
 
4) Filtering mode is set by using filter tag, for example:
    Filtering Mode
       true
       one
        …
 
5) Autocomplete mode. To set this mode you need to use following tags:
    - auto :
        true | false - enable | disable  autocomplete mode
    - source
        path to autocomplete source
    - cache
        true | false - enable | disable XML caching
    - sub
        true | false - enable | disable auto load additional suggestions on selecting last loaded option
 
    For example:
    Autocoplete Mode
           true
           complete.php
           false
           false