Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    dynamic title binding

    Hi everyone

    i am using as sectionstack in which i need to change the title dynamically.
    the project is multilingual so when logging in it the text's should change accordingly.


    isc.SectionStack.create({
    ID: "sectionStack",
    visibilityMode: "single",
    width: 300, height: "100%",
    sections: [
    {title: "Store", expanded: true, items: [boundTree]}
    ]
    });

    Here title is hardcoded. how can i show titles dynamically.
    can i bind to a java variable likewise in jsp and all.

    Thanks in advance

    #2
    Use SectionStack.setSectionTitle() to change titles dynamically.

    Comment

    Working...
    X