Fabio,

You can add whatever control you want in the grid.


In this example I create a container with a textbox and a button.

First, create the procedure to create the container and the objects you want.

I did this in the custom library of the page.


proc mycontainer
mycontainer = createobject("container")
mycontainer.layout = "horizontal"
mycontainer.height = 50
mycontainer.addobject("text1","textbox")
mycontainer.addobject("btn1","commandbutton")
btn1.caption ="Custom Button"

return mycontainer


Then I added a new column in the grid by right clicking the header of an existing column and selecting "Insert Column After"

The in the attributes of the new column, I entered mycontainer in the custom control option.

Name:  cusstomgrid1.jpg
Views: 197
Size:  39.9 KB


Then you can see the custom container in my grid.

Name:  customgrid2.jpg
Views: 1079
Size:  29.6 KB

Is this what you are trying to achieve?

Herb