Как добавить эффект CSS на дерево JQuery Struts2

У меня проблемы с моим деревом jquery. сейчас я использую это: http://struts.jgeppert.com/struts2-jquery-showcase/index.action

Я хочу сделать фон CSS на выбранном узле дерева после щелчка по узлу. Как я должен сделать, пожалуйста, дайте мне некоторую идею? Эффект css отображается при передаче обслуживания на узел дерева, но после щелчка эффект css не отображается.

Я добавил это <sj:head jqueryui="true" jquerytheme="showcase" /> в голове тег

, добавил следующий код в скрипт

$(function(){
        $.subscribe('treeClicked', function (event, data){
            alert("treeClicked");// check if script called on page load
            //Get the next item, this is the tree node object is selected, many operations need it
            var item = event.originalEvent.data.rslt.obj;
            //For example, we want to select the node id suggest, you can write like this
            alert ('Clicked ID : ' + item.attr ("id"));
            document.getElementById("g_selected_uid").value = item.attr("id");
            document.forms.selectedUnitForm.submit();
            //self.close();
        });
    });

а затем вот мой код дерева JQuery -

<sjt:tree id="treeDynamicAjax"
jstreetheme="apple"
rootNode="#session.UNT_LIST"
childCollectionProperty="children"
nodeTitleProperty="title"
nodeIdProperty="id"
openAllOnLoad="true"
onClickTopics="treeClicked"
></sjt:tree>

0 ответов

Другие вопросы по тегам