Please help me in solving an error with the Backbase
am using c:transform tag but am getting follwing error
GENERIC: Javascript error: "Component returned failure code: 0x80600001 [nsIXSLTProcessor.importStylesheet]". c:transform function()
once i debug the code its pointing to the line.
, am very new to BACKBASE so please help me
I appriciate your help. !!!

Problem with <c:transform />
16 June, 2008 - 13:42 — yudicould you check the stylesheet code ? it seems there is something wrong with code there for instance XPath .
~Yudi
Thanks for the immediate response.
16 June, 2008 - 13:54 — SandyYudi
I want to send my complete code but how can I paste the entire code , cos after preview comment only few lines are being displayed, please reply soon, I have been trying from last 1 week but i couldn't come out of the bug...
You can put your code inside
16 June, 2008 - 14:16 — SjoerdYou can put your code inside <code> </code> tags, the result will look like:
And it should not be truncated
Thanks Yudi
17 June, 2008 - 08:35 — SandyI rechecked my stylesheet there was some error so, my code working fien.
But one more help i need..
Can u just send me code of Xpath for treegrid, i.e. an XMl file for which i will generate the stylesheet and will ransform, inthat the treegrid will be in the form of table, for this table i want the XPath to find the particular value of a row or a column, please help me out..... !!!
Problem with <c:transform />
17 June, 2008 - 15:32 — yudiHi Prasad,
I am not sure if I understand the question but I think it is not necessary to use stylesheet for treegrid. It is only need XML data content, treeGrid and data source.Please have a look treeGrid example http://demo.backbase.com/explorer/#|examples/treeGrid.xml. To get value for certain index row in tree grid, you could try to iterate through the list grid viewNode,get the row that is not hidden and get the value.You could do this in the click event from a button for instance. For example:
alert(oTree.selectNodes("view()/div[3]/table/tbody/tr[property::clientWidth gt 0]/td[1]/div/property::innerHTML"); // this going to iterate through all row that is not hidden in column 1 (if you want column 2 then change td[2],etc ) and get the content. This return as an array.
If this is still not clear , please read more post in :
http://bdn.backbase.com/node/4950
http://bdn.backbase.com/node/4770
~Yudi
Thanks Yudi
18 June, 2008 - 05:08 — SandyHi Yudi.
Am very new to Backbase and javascript can u please send me a small complete example for the same i.e. XPath for treeGid iteration. This is my sammple XML file, please send the html code with detailed iteration of every element of the treeGrid, "whenever you will be free".My sample XML file is as under.
Actualy there will be a comboBox if i select an option from that then it should point to the related row or column of the treeGrid(with change in colour).
<record id="junior" parentId="senior" hasChildren="true">
<name>Junior</name>
<surname>Showcase</surname>
<email>junior.showcase@mail.company.com</email>
</record>
<record id="july" parentId="senior">
<name>July</name>
<surname>Showcase</surname>
<email>july.showcase@mail.company.com</email>
</record>
<record id="anna" parentId="junior">
<name>Anna</name>
<surname>Showcase</surname>
<email>anna.showcase@mail.company.com</email>
</record>
<record id="senior" hasChildren="true">
<name>Senior</name>
<surname>Showcase</surname>
<email>senior.showcase@mail.company.com</email>
</record>
<record id="helen">
<name>Helen</name>
<surname>Show</surname>
<email>helen.show@mail.company.com</email>
</record>
<record id="pete" hasChildren="true">
<name>Pete</name>
<surname>Showme</surname>
<email>pete.showme@mail.company.com</email>
</record>
<record id="john" parentId="pete">
<name>John</name>
<surname>Showme</surname>
<email>john.showme@mail.company.com</email>
</record>
</records>
Thanks Yudi
18 June, 2008 - 10:35 — yudiHi Prasad,
I think you could see the post in http://bdn.backbase.com/node/5054
Cheers,
Yudi