image in cell

Hi,

i’m trying to attach an image in a cell in grid. It works great with this codes in xml:



“<![CDATA[value]]>”



Now when i want to edit the value, it shows the path of image.

Can i change my codes so, that image is readonly and the value is editable? Like cell type dyn.

And how can i change only the value of the cell like: var value = mygrid.cells(rowId,cellInd).getValue.



Thanks in advance!

pyt

Now when i want to edit the value, it shows the path of image.
Can i change my codes so, that image is readonly and the value is editable? Like cell type dyn.

Unfortunately there is no appropriate cell’s type. You can try to create custom cell’s type dhtmlx.com/docs/products/dht … _cust_skin


>>And how can i change only the value of the cell like: var value = mygrid.cells(rowId,cellInd).getValue
You can change cell’s vale with setValue(“newValue”) method.



mygrid.cells(rowId,cellInd).setValue(“value”);