S3380002
The job number for this is S3380002. Please keep the color schemes as the client actually wanted the background for the lines that change to be obvious to the respondent. Other than that, please let me know if you have any questions. I have a conjoint survey which I am trying to deliver by EOD today. While I work on the programming, I am wondering if anyone has some time to jump in and work up the HTML table that displays above the question text (in Dimensions), where I can pipe in the information from the conjoint design. All of the lines that are blank and in that gold-ish color are areas where the text will change as the respondent goes through. If you do have some time, and can knock this out by around 3 so I can start to plug in my data by then, that would be ideal.
by dixalex
HTML
<table class="px">
<tbody>
<tr>
<td class="productX" colspan="2">Product X</td>
</tr>
<tr>
<td class="rowHeader">Indication</td>
<td class="lastTD">▪ As an adjunct to diet and exercise, to improve glycemic control in <b>patients with type II diabetes who are obese</b> (monotherapy and in combination with other antidiabetic agents)</td>
</tr>
<tr>
<td class="rowHeader">MOA</td>
<td class="lastTD">▪ A co-agonist with Glucagon-like peptide-1 receptor (GLP-1) agonism and glucagon receptor (GCGR) agonism integrated in the same molecule </td>
</tr>
<tr>
<td rowspan="7" class="rowHeader">Efficacy</td>
<td class='change'>▪ {#eff_pipe01}</td>
</tr>
<tr>
<td class='change'>▪ {#eff_pipe02}</td>
</tr>
<tr>
<td>▪ Maintenance of weight loss at least comparable to best-in-class GLP-1 analog </td>
</tr>
<tr>
<td class='change'>▪ {#eff_pipe04}</td>
</tr>
<tr>
<td class='change'>▪ {#eff_pipe05}</td>
</tr>
<tr>
<td class='change'>▪ {#eff_pipe06}</td>
</tr>
<tr>
<td class="lastTD">▪ Impact on blood pressure comparable to GLP-1 analogs</td>
</tr>
<tr>
<td rowspan="5" class="rowHeader">Safety/Tolerability</td>
<td class='change'>▪ {#safe_pipe01}</td>
</tr>
<tr>
<td class='change'>▪ {#safe_pipe02}</td>
</tr>
<tr>
<td>▪ Incidence of pancreatitis comparable to GLP-1 analogs</td>
</tr>
<tr>
<td>▪ Loss of fat-free tissue is similar to that occurring with diet-induced weight loss and no worse than treatment with GLP-1 analogs (up to ~40% of total body weight loss)3</td>
...
CSS
table.px {
border-collapse: collapse;
font-family: arial;
width: 820px;
border: solid 3px #233369;
}
td {
border: solid 1px #CCC;
padding: 5px;
color: #233369;
}
td.productX {
text-align: center;
color: #FFF;
background-color: #7ca51f;
border: solid 3px #233369;
}
td.rowHeader {
background-color: #e8f5ca;
padding-left: 10px;
min-width: 175px;
border-bottom: solid 3px #233369;
}
td.lastTD {
border-bottom: solid 3px #233369;
}
td.change {
background-color: #ffe48f;
}