I have a datagrid that is setup like this:
Header row
row
row
New Table
row
row
row
Basically a datagrid with parent a child relationship. I can export the primary table, but the nested child table is inserted into a single cell in Excel. How would you export the datagrid and maintain the correct layout?
My failed attempt:
Header row
row
row
New Table
row
row
row
Basically a datagrid with parent a child relationship. I can export the primary table, but the nested child table is inserted into a single cell in Excel. How would you export the datagrid and maintain the correct layout?
My failed attempt:
Java:
<script type="text/javascript">
function NewTime() {
// Get the Query String values and split them out into the vals array
var vals = new Object();
var qs = location.search.substring(1, location.search.length);
var args = qs.split("&");
for (var i=0; i < args.length; i++) {
var nameVal = args[i].split("=");
var temp = unescape(nameVal[1]).split('+');
nameVal[1] = temp.join(' ');
vals[nameVal[0]] = nameVal[1];
}
var issueID = vals["ID"];
//use this to bring up the pretty pop up
NewItem2(event,"[URL unfurl="true"]http://sharepointed.com/Lists/ListNotes/NewForm.aspx?AccNum="[/URL] + issueID);
}
</script>