Giter Club home page Giter Club logo

Comments (7)

clus90 avatar clus90 commented on August 22, 2024 1

Never mind, I added the toString() method to my object and now it works like a charm.

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Hello @abhihasabe ,

Can you please share with us your definition of the _dropdownMenuItemsCamp list?

In particular, the toString() method of the objects in this list must return a String containing what your want to match (for example "Maharashtra").

from searchable_dropdown.

clus90 avatar clus90 commented on August 22, 2024

I am having the same issues, I am using Single Object, but when I write anything the list doesn't filter at all.

SearchableDropdown.single(
items: _businessList.map((bus) {
return (DropdownMenuItem(
child: Text(bus.name), value: bus));
}).toList(),
value: _selectedBusiness,
hint: "Select a business",
searchHint: "Select a business",
onChanged: (value) {
setState(() {
_selectedBusiness = value;
});
},
dialogBox: false,
isExpanded: true,
menuConstraints: BoxConstraints.tight(Size.fromHeight(350)),
),

from searchable_dropdown.

abhihasabe avatar abhihasabe commented on August 22, 2024

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Hello @abhihasabe ,

Thanks for sharing your code.

I'll take the example of the CurrentRoleBelongTo class.
For the search to work the way you are using it with this class, you would need to define the toString() function as follows in lib/model/CurrentRoleBelongTo.dart:

...
class CurrentRoleBelongTo {
...
String toString(){
return(generalName);
}
...
}

You also need to add a toString() method the other classes for which you want to use the search the same way:

  • SourceDataList
  • DataList
  • TractorDataList
  • DataListByState
  • BranchDataList
  • employeeDataList

from searchable_dropdown.

abhihasabe avatar abhihasabe commented on August 22, 2024

from searchable_dropdown.

lcuis avatar lcuis commented on August 22, 2024

Thanks for the confirmation @abhihasabe !
Closing this issue. Feel free to reopen if needed.

from searchable_dropdown.

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.