Skip to content

v0.3.0

Latest
Compare
Choose a tag to compare
@daverbk daverbk released this 24 Jan 18:05

What's Changed

  • Added possibility to get data from table either by row index or column name and cell value

               listView
                  .open("Case")
                  .table()
                  .sortBy("Case Number", SortOrder.ASC)
                  .getRecordData(3);
                  
               listView
                   .open("Case")
                   .table()
                   .sortBy("Case Number", SortOrder.ASC)
                   .getRecordData("Subject", "DRak");
    
  • Bug fixes

Full Changelog: v0.2.1...v0.3.0