I need to get a specific section of text from the listpicker results. So far I can get the item I select to appear in an alert box. I need to set a specific part of that listpicker selection for mysql delete.
example: 24 - 1234567 - DTV - 25-02-2015
I need to use the '24' as this is a row id from my sql db. I can then insert this into my blocks and add to php script to delete that row.
Block Code so far for listpicker:

One possibility is to create 2 lists in your
Web.GotTextevent: listcpetypelistpickerto display in the listpicker as you already have and a second list with only the rowids, let's call that listlistRowIds.In the
for each in listloop of theWeb.GotTextevent add additionally:Then in the
Listpicker.AfterPickingevent just select the corresponding item from the second list using theListpicker.SelectionIndexlike this