I am able to display my query result in the table pane, but I want to update it based on user click but it doesnt work. Can this be done? Below is what I am doing but it doesnt change my value on clicking. Would appreciate some guidance on this I have ondblclick = zenPage.SelectItem ClientMethod selectItem(id, time) [ Language = javascript ]
{</p>

    table this.getComponentById('tablename');
    var data table.selectedIndex;
    var rowval table.getRowData(data);
    var valuep new zenProxy();
           valuep.TXTFLAG rowval["TEXT"];
    zenPage.ToggleTextFlag(pP);

    var table this.getComponentById('tablename');
     table.executeQuery();
}

ClassMethod ToggleTextFlag(bData As %ZEN.proxyObject, act As %String) As %Boolean [ ZenMethod ]
{
 if bData.TXTFLAG = "Y"
{
     s bData.TXTFLAG = "N"
}
else
{
bData.TXTFLAG = "Y"
}

Set tSC = 0     

Quit tSC
}

</body></html>