I build up a grid. In a column item, I want to set as a buttom or link that can open a popup window for further usage.
The grid can provide this application or not ?
If yes, this opening popup window as a selection filter can get back a infromation item to the grid ?
sematik
December 5, 2012, 5:23pm
#2
I build up a grid. In a column item, I want to set as a buttom or link that can open a popup window for further usage.
You may place any html content in your header or cell.
grid.setHeader(“A, ,C”)
<![CDATA[]]>
sematik,
I am success in adding the button to grid cell item. In fact, I want to click this button to link another popup windows. Therefore I want to ask that click the button to link another popup windows method.
For my opinion, the script or code may add in the XML file or gobal programming ?
Thanks for oyur help !
Best Regards !
Ivan
sematik,
I also know grid cell which can make a function to click to open a website.
myGrid_1.setColTypes("link")
And I want to ask I can click to open a layout or popup window or not ?
Thanks for your help !
Ivan
sematik
December 6, 2012, 1:20pm
#5
You my add any javascript function to your “link” cell:
Real link^javascript:doSomething(“param1”,“param2”,“param3”)
in case of placing the html input(button) in a cell you may also add any function using onclick event:
<![CDATA[]]>