Re: text in a popup box when going over cell
Ok let me break it down
I have a large text file from which i extract data. The point is data is in form of blocks similar to the one below
value RadioLinkDeletionRequest :
{
protocolIEs
{
{
id 143,
criticality reject,
value NodeB-CommunicationContextID : 2
},
{
id 44,
criticality reject,
value CRNC-CommunicationContextID : 24
},
{
id 213,
criticality notify,
value RL-informationList-RL-DeletionRqst :
{
{
id 206,
criticality notify,
value RL-informationItem-RL-DeletionRqst :
{
rL-ID 1
}
}
}
}
}
}
}
Display More
Sometimes ten times the length..
There are about 60000 such in each file
What i do is decode each and put it in a single row, after the decoded version i need one cell to have this entire above text.
Only thing is being so many lined, i dont want it to be seen unless someone really wants to...
There will be one such block on each line..
I need someway of outputting it, so rest of the output remains on a line basis(dont want to increase height of each row), but this to appear in some case. The easiest i thought was go over a cell..There can also say be a button in the cell, but is much topugher to create 60000 buttons, so was thinking of some way to say make it appear like in a link, go over it , a box appears with the above block
Aadarsh