Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. <asp:HiddenField ID="hdfCdTipoUsuario" runat="server" Value='<%# Eval("CdTipoUsuario")%>' />
  2.  
  3. <asp:Repeater ID="rptGerenciaProcessos" runat="server"
  4. onitemcommand="rptGerenciaProcessos_ItemCommand"
  5. onitemdatabound="rptGerenciaProcessos_ItemDataBound">
  6. <HeaderTemplate>
  7. <table id="gerenciaProcessos">
  8. <thead>
  9. <tr>
  10. <th>Consultar processo</th>
  11. <th>Priorizar</th>
  12. <th>Priorizado</th>
  13. <th>Nº do processo</th>
  14. <th>Data de abertura</th>
  15. <th>Início da análise</th>
  16. <th>Término na análise</th>
  17. <th>Situação</th>
  18. <th>Grupo</th>
  19. <th>Cota</th>
  20. <th>Etapa</th>
  21. <th>Analista</th>
  22. </tr>
  23. </thead>
  24. </HeaderTemplate>
  25. <ItemTemplate>
  26. <tr>
  27. <td>
  28. <asp:Button ID="btnConsultarProcessos" OnClick="btnConsultarProcessos_Click" runat="server" Text="Consultar processo" CommandName="ConsultaProcessoGestor" CssClass="acessos" />
  29. </td>
  30. <td>
  31. <asp:HiddenField ID="hdfCdProcesso" runat="server" Value='<%# Eval("CdProcesso")%>'/>
  32. <asp:HiddenField ID="hdfCdAnalise" runat="server" Value='<%# Eval("CdAnalise")%>' />
  33. <asp:HiddenField ID="hdfCdUsuario" runat="server" Value='<%# Eval("CdUsuarioAn")%>' />
  34. <asp:HiddenField ID="hdfCdWorkFlowItem" runat="server" Value='<%# Eval("CdWorkFlowItem")%>' />
  35. <asp:HiddenField ID="hdfCdTipoUsuario" runat="server" Value='<%# Eval("CdTipoUsuario")%>' />
  36. <asp:LinkButton ID="lkbPriorizar" runat="server" CssClass="clickPriorizar">Priorizar</asp:LinkButton>
  37. <!--<a href="#"class="clickPriorizar">Priorizar</a>-->
  38. </td>
  39. <td><input type="checkbox" id="ckbPriorizado" <%# Eval("IcPriorizado")%> disabled></td>
  40. <td><asp:Label Text='<%# Eval("CdProcesso")%>' runat="server" /></td>
  41. <td><asp:Label Text='<%# Eval("DtCriacao")%>' runat="server" /></td>
  42. <td><asp:Label Text='<%# Eval("DtInicio")%>' runat="server" /></td>
  43. <td><asp:Label Text='<%# Eval("DtFim")%>' runat="server" /></td>
  44. <td><asp:Label Text='<%# Eval("NmWorkFlowItem")%>' runat="server" /></td>
  45. <td><asp:Label Text='<%# Eval("CdGrupo")%>' runat="server" /></td>
  46. <td><asp:Label Text='<%# Eval("CdCota")%>' runat="server" /></td>
  47. <td><asp:Label Text='<%# Eval("NmTipoStatus")%>' runat="server" /></td>
  48. <td><asp:Label Text='<%# Eval("NomeUsuario")%>' runat="server" /></td>
  49. </tr>
  50. </ItemTemplate>
  51. <FooterTemplate>
  52. </table>
  53. </FooterTemplate>
  54. </asp:Repeater>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement