|
Hi
The problem is that the panelTabbed was changed so the tabChange works client-side and not server side. But because of this change the Listener logic doesn’t work anymore. The current situation is that with a fix we can choose if the pannelTabbed works client or server side. On the server side the listener works. So you have to use the server side logic. This is flag driven but I don’t know exactly the flag but check the nightly builds and you will find it.
Hope this will help.
mfg Hans Sowa PROCON DATA
Datenverarbeitung Ges.m.b.H.
-----Ursprüngliche Nachricht-----
i used panelTabbedPane. everthing is ok but tabchange listener is not working. this my code :
<t:panelTabbedPane id="tabPanel" bgcolor="#FFFFCC" > <t:tabChangeListener type="tr.com.bilisim.islev.icerik.pagecode.TestActionListener"/> ... </t:panelTabbedPane>
public class TestActionListener implements TabChangeListener { public TestActionListener() { super(); System.out.println("TestActionListener.initialize"); } public void processTabChange(TabChangeEvent arg0) throws AbortProcessingException { System.out.println("TestActionListener.processTabChange - old " + arg0.getOldTabIndex() + " new " + arg0.getNewTabIndex()); } } what's wrong? can somebody help me ?
|
- AW: tabchangelistener Hans Sowa
- Re: tabchangelistener Turgay Zengin

