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