grid + dataprocessor + form

I’ve looked through all samples, etc, but can’t find one to really match:
Here’s my problem : I have a Grid that loads up beautifully using

mygrid.loadXML(“xx_sample_mssql_connector.php”);
var dp = new dataProcessor(“xx_sample_mssql_connector.php”);
dp.init(mygrid);

as you can imagine xx_sample_mssql_connector.php is a re-worked version of your sample. :wink:

I’m using an layout and splitting the screen in two: I have defined a form in the second pane, and would like to populate it dynamically everytime I select a row on the grid. Ideally I would also like “save”, “delete” and “new buttons”, but lets not go too far. All the bindind examples I have seen do not deal with the dataProcessor.

Thanks and merry XMas to all…

Actually, I answered it myself, and am proud: I forgot to set the gridColumnIds to same names as the names of the form fields!

Here’s an interesting problem though: One of the cells contains the data:
“AO&B SRL” (It’s the name of a company)… In the grid it shows up fine, but in the form it shows up as “AP&B SRL” as if it’s been “escaped” in one case but not the other…

This one looks tricky to me, but I’m sure you have the solution up your sleeves (from your Santa Outfits!)…