Im trying out with dhtmlxgrid and inplace of using iframes I want to open a window like dhtmlxwindow while using a link. Im using a xml file. Is this possible?
It’s possible to call functions using link.
In case of link type in grid tag can be the following:
Link^javascript:someFunction();^_self
Im trying to call an ajax function but somehow its not working I tried
Link^javascript:Effect.Appear(“id”,{ duration: 3.0, from: 0, to: 1 })^_self
and
Link^javascript:Effect.Appear(‘id’,{ duration: 3.0, from: 0, to: 1 });^_self
Not sure why this will not work. The same in HTML would be
onClick="effect_1 = Effect.Appear(‘id’,{ duration: 3.0, from: 0, to: 1 }); return false;"
Thanks in Advance,
Im trying to call an ajax function but somehow its not working I tried
Link^javascript:Effect.Appear(“id”,{ duration: 3.0, from: 0, to: 1 })^_self
and
Link^javascript:Effect.Appear(‘id’,{ duration: 3.0, from: 0, to: 1 });^_self
Not sure why this will not work. The same in HTML would be
onClick="effect_1 = Effect.Appear(‘id’,{ duration: 3.0, from: 0, to: 1 }); return false;"
Thanks in Advance,
Please check the sample in grid package dhtmlxGrid/samples/01_cell_types/04_link_grid.html (the link in the second row calls JS function).
Please provide the complete demo if the issue isn’t solved