iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
How do I bind the scrolled event with the table view to my binding provider. Reason why I say this is because I have to display Banners for advertising on a UITableViewController<ListItemViewModel>. So what I need to do is on every scroll event I set the UIImageView back to the very bottom of the screen.
I assume:
this.AddBinding("TableView", BindableProperties.Command, "Scrolled");
Is that wrong, I assume it is?
This scenario is view-specific. I'd like to recommend you to implement it on the view level, since the behavior might not similar on the other platform.
Hope this helps.
In order to catch the scrolled event of TableView we need to override ViewDidAppear and assign the TableView event handler in here.
public override void ViewDidAppear(bool animated) { base.ViewDidAppear(animated); this.TableView.Scrolled += TableViewScrolled; } private void TableViewScrolled(object sender, EventArgs e) { // add scrolled event handler code here }
Hope this help.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname