Hi Frank,
Thanks for using our Syncfusion Mobile product.
Yes, it’s possible to provide actionlink in each list items
using ‘Html’ property. In which you can render the Actionlink control with
client sire rendering. Please refer the below code snippets.
[View]
@Html.MobSyncfusion().ListBox("Incidents").RenderMode(RenderMode.Auto).IOS(c => c.ShowCorners(false)).BindDataSource(Model, map =>
{
map.MapTo<MobileMVCWeb.Controllers.Products>(binding =>
{
binding.ItemDataBound((item, nd) =>
{
item.PrimaryKeyValue =
nd.PrimaryKey;
item.Html = nd.Title + "<br/>" + "<a rel='nofollow' href='Home/Views' data-role='sf-m-actionlink'
type='button'>Link</a>";
});
});
})
Also we have created sample for the same, you can find the
sample in below attachment.
Listbox.zip
Please try this sample and let us know if it helps out.
Regards,
Thivya.