How can i add text box on dhtmlxtoolbar?

Hi,



please can anyone tell me how can i add text box on the toolbar?



i am using Dhtmlxtoolbar here.



I need to Add a text box to type the text on the tool bar.



please help me in solving this.



Advanced Thanks



uva

You can use LabelButton, it may contain any HTML inside it
dhtmlx.com/docs/products/kb/inde … ar%20label

Hi thanks for your information,

I got the text box and i tried to get the text box data using the following code

xml code which i am using:


        

Javascript code to get the text box data:

if(itemId==‘0_search’){
                alert(‘search’);
                alert(document.getElementById(‘0_search_text’).value);
            }

But i didnt get the textbox data, please can you help me.

Thanks
uva
   


In grid IDs are not real document IDs , you can change XML as


In such case your js code will work correctly

Hi it’s really amazing.

 Thanks a lot, it is is working fine

uva