how to make docked toolbar

Hi,

I couldn’t figure out how to make toolbar docked at the bottom of the screen. Toolbar below still floating in the middle.

var channelCommentsView =
{id:“channelComments”,
css:“basicBG”,
//animate:animateBottom,
rows:[ {
id:“channelCommentList”,
css: “basicBG”,
view:“list”,
scroll:“y”,

                            type:"comments",
                            //animate:animateBottom,
                             
                     
                            
            },

            {
                         id:"channelCommentBar",
                         view:"toolbar",
                          elements: [{view:"text",id:"channelCommentInput",labelWidth:0 , placeholder:"enter your inquiry" }   ]
                             
            }
            ]

} ;

Thanks!

add the next command before running the above code

dhx.ui.fullScreen();

it will force fullscreen view, layout will take all height, and toolbar will be bottom aligned

Thanks! I did set style height:100%, then it solved the problem