Code Monkey home page Code Monkey logo

Comments (2)

rushisangani avatar rushisangani commented on May 28, 2024

Hi @shishirumrao

Few things to mention here.

  1. You can use bank object directly in returning in closure.
let selectionMenu =  RSSelectionMenu(selectionType: .Single, dataSource: bankDataArray, cellType: .Custom(nibName: "CustomTableViewCell", cellIdentifier: "customCell")) { (cell, bank, indexPath) in
    let customCell = cell as! CustomTableViewCell
    customCell.lbl.text = bank.banknm
}
  1. You will get your select object in selection closure, not text.
selectionMenu.setSelectedItems(items: selbankDataArray) { (bank, selected, selectedItems) in
   self.selbankDataArray = selectedItems
   self.btnBank.setTitle(bank.banknm, for: .normal)
}
  1. addFirstRowAs function should be used when you want to show first row as Empty (Which allows empty selection in dropdown), All (to Select All Values) or Any Custom Text. And for that you'll get an event when user clicks on that First row. (Now depend on the needs you need to show results)

  2. Your code filter seems correct, but it would be good if you could check if ** bankDataArray** contains bank object only with specified banknm property.

from rsselectionmenu.

shishirumrao avatar shishirumrao commented on May 28, 2024

Thanks for mentioning those point @rushisangani
I have crosschecked "bankDataArray", it contains bank object only

from rsselectionmenu.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.