Hi nicoletacornea,
The context and information that you have shared is a bit scarce, but based on it I have created a quick code snippet that showcases the functionality that you need.
We will use the jqxGrid`s ‘cellclick’ event for this code example.
In your JS:
$("#grid").on("cellclick", function (event)
{
// event arguments.
let args = event.args,
rowBoundIndex = args.rowindex,
girdRow = document.getElementById('row'+rowBoundIndex+'grid'),
rowCell = girdRow.querySelector("div[columnindex='1'");
rowCell.firstElementChild.innerHTML = "<p> Clicked cell</p>";
});
Let me know if that works for you!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.com