Inline Editing & Search Functionality in WebListBox

  1. How to implement inline editing of data in a WebListBox? The desktop version of Xojo ListBox has its own “EditCell” method. Wtha is the alternative for the Web Version?
  2. For the search functionality, do i still need a query? or it can be done in pure Xojo?
  1. There is no edition possible in WebListbox. Your best bet could be GraffitiSuiteWebGrid:
    https://graffitisuite.com/features/web-edition/graffitiwebgrid/

  2. Depends what you are after. A simple way to go would be to put all the data in the column you want to search, and use IndexOf http://documentation.xojo.com/api/language/indexof.html

[quote=470022:@Michel Bujardet]1. There is no edition possible in WebListbox. Your best bet could be GraffitiSuiteWebGrid:
https://graffitisuite.com/features/web-edition/graffitiwebgrid/

  1. Depends what you are after. A simple way to go would be to put all the data in the column you want to search, and use IndexOf http://documentation.xojo.com/api/language/indexof.html[/quote]

Thank you for the response Sir.