08-06-2008 09:49 AM
08-08-2008 10:21 AM
This is not possible from within the BlackBerry Browser. It could be done in a Java application by creating a Java Object to hold your table, which is then passed into the Clipboard.put method.
08-11-2008 08:56 PM
08-12-2008 01:04 PM
Just any html table really... for example
<table>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
</table>
08-12-2008 01:18 PM
<html><body>
<div id="myTable1" style="border: red solid 1px;">
<table summary="data1" border="1">
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>
<a href="http://mmf?A;B;C$1;2;3$">"data1" content (L)</a>
</div>
</body></html>
then when you paste, you'll get a string containing this :
http://mmf/?A;B;C$1;2;3$
and stripping the beggining is easy to get :
"A;B;C$1;2;3$"
08-12-2008 01:27 PM
Since you had to put A,B,C,1,2,3 into the href, there would be no way to do it with dynamic data though... correct?
08-12-2008 03:25 PM
jwoodall01 wrote:Since you had to put A,B,C,1,2,3 into the href, there would be no way to do it with dynamic data though... correct?
It depends on what you mean by "dynamic"...
You can of course create a php script that will deliver static HTML (that's for the easy part
).
You can maybe do some basic javascript that will create the href dynamically (don't dream of DOM though, I'm pretty sure the Blackberry javascript support is not very high)
document.write() is supported as of march 2007, so if you have a javascript array somewhere... it's quite easy.
http://na.blackberry.com/eng/developers/resources/
ah HA ! I'm reading right now that with HH OS 4.6 you will be able to do AJAX, toy with XML and DOM2, please read KB15466 :
but I'm still wondering if dynamic is really mandatory ? Moreover 4.6 is very far away for non-Bold handhelds.