Advertisement
Guest User

Untitled

a guest
May 2nd, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <bs:GridView DataSource="{value: TablaGridView}" SortChanged="{command: OrdenaTabla}" class="table table-striped table-bordered table-hover table-full-width">
  2. <Columns>
  3. <dot:GridViewTextColumn HeaderText="Nombre" ValueBinding="{value: Nombre}" AllowSorting="True" />
  4. <dot:GridViewTextColumn HeaderText="Apellido Paterno" ValueBinding="{value: ApellidoPaterno}" AllowSorting="True" />
  5. <dot:GridViewTextColumn HeaderText="Apellido Materno" ValueBinding="{value: ApellidoMaterno}" AllowSorting="True" />
  6. <dot:GridViewTextColumn HeaderText="Estado" ValueBinding="{value: Estado}" AllowSorting="True" />
  7. <dot:GridViewTextColumn HeaderText="RFC" ValueBinding="{value: RFC}" AllowSorting="True" />
  8. <dot:GridViewTemplateColumn AllowSorting="false">
  9. <ContentTemplate>
  10. <dot:Button ButtonTagName="button" class="btn btn-blue show-sv" href="#FormaCliente" data-startFrom="right" Click="{command: _parent.Edit(_this)}">
  11. <i class="fa fa-edit"></i> Editar
  12. </dot:Button>
  13. &nbsp;&nbsp;&nbsp;
  14. <dot:Button ButtonTagName="button" class="btn btn-red" Click="{command: _parent.Delete(_this)}">
  15. <i class="fa fa-trash-o"></i> Borrar
  16. </dot:Button>
  17. </ContentTemplate>
  18. </dot:GridViewTemplateColumn>
  19. </Columns>
  20. </bs:GridView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement