Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Popup Form

    - SmartGWT: 2.5

    I'm trying to make a grid, and insert a form popup into each cell. Each form have 2 or 3 text fields. One of those fields are shown in the cell label.
    Following this showcase link, I did the grid, and make a event so every time you click on a cell, a popup windows shows up.
    http://www.smartclient.com/smartgwt/showcase/#featured_grid_cell_widgets

    BUT I HAVEN'T BEEN ABLE TO DO THE POPUP FORM.

    WHAT IS THE BEST WAY TO MAKE A POPUP FORM? IS THERE ANY WIDGET FOR THIS?

    I'M KINDA LOST HERE. THIS IS MY FIRST GWT-SMART PROJECT.

    THANKS FOR YOUR HELP.






    5. sample code.

    #2
    Hi,

    You can use smartgwt Window for popups with

    Code:
    setismodal(true) and setshow and setShowModalMask(true)
    and use window.addItem method to add other widgets,canvas etc to window.

    Comment

    Working...
    X