Hi,
I’m trying to use the popup on a InputButton on the toolbar.
What I want is to have an inputfield on the toolbar that when is typed inside a popup appears with the result of the search, here the part of code that should append the popup, but something is not working:
myToolbar.attachEvent("onValueChange", function(id, value){
myPop = new dhtmlXPopup({ toolbar: myToolbar, id: "search"});
myPop.attachList("name,price", [
{id: 1, name: "Audi A5 Coupe", price: "€ 31,550"},
{id: 2, name: "Audi A5 Sportback", price: "€ 30,990"},
myPop.separator,
{id: 3, name: "Audi A6", price: "€ 30,990"},
{id: 4, name: "Audi A6 Avant", price: "€ 37,450"},
{id: 5, name: "Audi A6 Quattro", price: "€ 55,360"},
myPop.separator,
{id: 6, name: "Audi TT Coupe", price: "€ 29,830"},
{id: 7, name: "Audi TT RS Coupe", price: "€ 59,800"}
]);
});
and here the inputButton from the xml file:
<item id="search" type="buttonInput" width="160"/>
If I simply try this code:
myToolbar.attachEvent("onValueChange", function(id, value){
alert(id+":"+value);
});
it works greathly. Some solution?
Thanks in advance.