Exemple #1
0
    protected TableCell CreateCheckCell(BPMTaskListItem taskitem)
    {
        TableCell cell = new TableCell();

        cell.Text       = "<input id=\"" + taskitem.StepID.ToString() + "\" taskid=\"" + taskitem.TaskID.ToString() + "\" type=\"checkbox\" onclick=\"checkrow(this);\">";
        cell.CssClass   = "CHK";
        cell.ColumnSpan = 2;

        return(cell);
    }
Exemple #2
0
 protected TableCell CreateShareCell(BPMTaskListItem taskitem)
 {
     if (taskitem.Share)
     {
         return(CreateImageCell("../Images/com_share16.gif", 2));
     }
     else
     {
         return(CreateEmptyCell(2));
     }
 }
Exemple #3
0
 protected TableCell CreateAttachCell(BPMTaskListItem taskitem)
 {
     return(CreateImageCell("../Images/com_attach.gif", 2));
 }