0

Not unique in the ID space of <AngsuranWND winAngsuran>: hapus_1

asked 2014-12-10 08:19:06 +0800

jwasky gravatar image jwasky
11 3

why an error like this?? SEVERE: >>org.zkoss.zk.ui.UiException: Not unique in the ID space of <angsuranwnd winangsuran="">: hapus_1

at org.zkoss.zk.ui.AbstractComponent.checkParentChild(AbstractComponent.java:1062) at org.zkoss.zk.ui.AbstractComponent.insertBefore(AbstractComponent.java:1074) at org.zkoss.zul.Listbox.insertBefore(Listbox.java:1869) at org.zkoss.zk.ui.AbstractComponent.appendChild(AbstractComponent.java:1232) at org.maj.hr.payroll.harian.transaksikaryawan.Angsuran.AngsuranWND.getList(AngsuranWND.java:141) at org.maj.hr.payroll.harian.transaksikaryawan.Angsuran.AngsuranWND.onCreate(AngsuranWND.java:91) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

delete flag offensive retag edit

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-12-10 08:44:51 +0800

terrytornado gravatar image terrytornado flag of Germany
9393 3 7 16
http://www.oxitec.de/

updated 2014-12-10 08:49:15 +0800

you are using the SAME id for several components in ONE component tree.

false:

<win id="win1">
  <button id="btn1" />
  <button id="btn1" /> <!-- throws error 'Not unique ID ... -->
</win>

better:

<win id="win1">
  <button id="btn1" />
  <button id="btn2" />
</win>

better:

<win id="win1">
  <win id="win2">
    <button id="btn1" />
  </win>

  <win id="win3">
    <button id="btn1" />
  </win>
</win>

Look here: ID space

best Stephan

link publish delete flag offensive edit
Your answer
Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Question tools

Follow
1 follower

RSS

Stats

Asked: 2014-12-10 08:19:06 +0800

Seen: 13 times

Last updated: Dec 10 '14

Support Options
  • Email Support
  • Training
  • Consulting
  • Outsourcing
Learn More