datatable

  1. ziovec

    B4J Question [WebApp] Table row selection

    Another nooby question for the community ^^ I have this datatable in my page, wich I managed to visualize the selected row in this way: $('#tabproduct tbody').on( 'click', 'tr', function () { if ( $(this).hasClass('selected') ) { $(this).removeClass('selected')...
  2. Mashiane

    B4J Tutorial [BANanoWebix] Lesson 8.3 Datatable Pagination & Exporting to XLSX, PNG, PDF and CSV

    Ola Lesson 8.1 Lesson 8.2 Lesson 8.3 Lesson 8.4 As per subject matter this lesson is about a data-table with a pager and also functionality to export its contents to PNG, PDF, CSV and XLSX. It's so amazing that with just a few object (map) settings and then a few simple calls webix does...
  3. Mashiane

    B4J Tutorial [BANanoWebix] Lesson 14 - The TreeTable

    Hi The tree-table is a combination of the tree and the data-table. To create the tree-table, one needs to add the columns they will need, then indicate which column should feature the tree structure and then add data to it. To create columns we use the WixDataColumn class we saw for the...
  4. Mashiane

    B4J Tutorial [BANanoWebix] Lesson 8.2. The DataTable/DataGrid

    Ola Lesson 8.1 Lesson 8.3 Lesson 8.4 Get your copy of BANanoWebix This is the second installment about the databable. Here we look at how to add our own columns in the data-table, we will not use .SetAutoConfig(True) as that will over-write our settings for the columns. To make this work, we...
  5. Mashiane

    B4J Tutorial [BANanoWebix] Lesson 8.1 The DataTable/DataGrid

    Ola Lesson 8.2 Get your copy of BANanoWebix The datatable is an editable table for data that one can use. Like the rest of the components, one is able to apply to it any css they need. For example here, we have provided our own css for the hover color using.. #if css .dthover...
  6. Luca Tonelli

    Android Question Webservices and datatable asp.net

    Hello I need to read the response of a webservices that provides data in a datatable The webservices is called correctly but I do not know how to read the data contained in the datatable.
Top