html links in grid cell

Hello all

I am wondering if it is possible to make clickable link inside of grid.

//Grid ASLLG = ASLW.attachGrid(); ASLLG.setImagePath("/statics/dhtmlx/common/imgs/"); ASLLG.setHeader("No,User ID,Records"); ASLLG.attachHeader("#numeric_filter,#numeric_filter,#text_filter"); ASLLG.setColumnIds("id,users,recs"); ASLLG.setColSorting("int,int,str"); ASLLG.setInitWidths("80,170,180"); ASLLG.setColAlign("right,left,left"); ASLLG.load("/api/share/all",function(){ ASLW.progressOff(); },"js"); ASLLG.init(); ASLLG.setEditable(false);

Based on this code i want to make two things.

#1 - I want to wrap records in Records column because some times it is very long text in there

#2 - My data in Records are similar to 245, 18, 44, 228, 547, 36, 2006, 19, 23, 77… etc etc
so, i want to make each number clickable inside grid cell to call something another modules written by dhtmlx.

Regards

You may try to use the “link” column type:
docs.dhtmlx.com/grid__columns_ty … inkscolumn
Here you can find a working example:
dhtmlx.com/docs/products/dhtmlxG … _grid.html

Dear sematik
thanks for fast response.

My problem is that i am not using a single text as link
as my OP i need to split string by comma and give link to each.

for example: 245, 18, 44, 228, 547, 36, 2006, 19, 23, 77

245 opens record which has ID 245
18 opens record which has ID 18 … etc

In fact you may place any required html-content in your cell.
for example:

{
id:1001,
users:“user1”,
recs:“value”,

  },