﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - Crosslight - How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Wed, 21 Oct 2015 09:39:41 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Hi Jimmy,&lt;br&gt;&lt;br&gt;I think I don't get the scrambling value, except one issue which are sometimes when I modify the value for at least 4 items, the top item OldQty already changed into NewQty even though I not yet saved.&lt;br&gt;&lt;br&gt;There is the reason that I think why this happened which like what you said which in my case caused by only having 1 Qty. The best practices if you have two Field to handle NewQty and OldQty, is actually from servers.&lt;br&gt;&lt;br&gt;Here are my solutions it is rather crude but the logic actually very simple, I just send you three files where I change things&lt;/p&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Fri, 16 Oct 2015 16:59:18 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Thanks Arief! That worked perfectly! &lt;br&gt;&lt;br&gt;But, here comes another issue... or possibly on how batch update is working with this setup. Try to use an Android phone, and modify the values for at least 4 items, save them and then reload. Check that the values are scrambled. I guess this has something to do with scrolling the items, like there's a virtualization going on to the listview which reuse previous controls in return the values of the old is being replaced by the new bound item.</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Fri, 16 Oct 2015 08:41:51 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Hi Jimmy,&lt;br&gt;&lt;br&gt;here is the solutions: you can simply add WindowSoftInputMode = SoftInput.AdjustPan in your activity like this:&lt;/p&gt;&lt;pre&gt;[ImportBinding(typeof(ItemListBindingProvider))][Activity(Label = "My Inventory", LaunchMode = LaunchMode.SingleTop, Icon = "@drawable/icon", WindowSoftInputMode = SoftInput.AdjustPan)]
public class ItemListActivity : ListActivity&amp;lt;ItemListViewModel&amp;gt;
{
}&lt;/pre&gt;&lt;p&gt;This is actually a bug from Android as you can see here:&lt;/p&gt;&lt;p&gt;&lt;span style="font-size: 10pt;"&gt;https://kb.xamarin.com/customer/portal/articles/1690276&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Fri, 16 Oct 2015 02:27:46 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Hi Jimmy,&lt;br&gt;&lt;br&gt;Ah very sorry, &amp;nbsp;I remember which bug it is, let me check the solutions.&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Thu, 15 Oct 2015 16:49:20 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Yeah. Well, there's that issue with the keypad. Apparently even with physical devices that behavior seems to be very annoying. Appreciate it if you can look at it. Thanks!</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Thu, 15 Oct 2015 04:08:28 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Glad it helps! please do inform us if there are a problem with the samples.&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Tue, 13 Oct 2015 17:53:30 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>&lt;blockquote&gt;Awesome! Hey Arief, I'm not sure if you noticed, that when the list is loaded the first time you set focus in a textbox for quantity (based on your samples) the keyboard popups for a split second and the focus from the textbox is lost. In return you need to click the textbox again to bring the keyboard back up. Please confirm and advise how we can fix it... Thanks!&lt;/blockquote&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;p&gt;Okay, I think this may be related to the emulator.&lt;br&gt;&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Tue, 13 Oct 2015 17:43:41 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Awesome! Hey Arief, I'm not sure if you noticed, that when the list is loaded the first time you set focus in a textbox for quantity (based on your samples) the keyboard popups for a split second and the focus from the textbox is lost. In return you need to click the textbox again to bring the keyboard back up. Please confirm and advise how we can fix it... Thanks!</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Tue, 13 Oct 2015 10:12:58 GMT</pubDate><dc:creator>Arief</dc:creator><description>&lt;p&gt;Yes can confirm Jimmy here is the sample for ios, please check the view controller and tableviewcell in view, I actually don't need to override, but I still need to register the Item Binding Adapter.&amp;nbsp;&lt;br&gt;&lt;br&gt;https://onedrive.live.com/download?resid=9F657B5249D6BB8D!115&amp;amp;authkey=!AKXcI9Tb9pDU3v4&amp;amp;ithint=file%2czip&lt;br&gt;&lt;br&gt;You can use your webApi to run the samples.&lt;/p&gt;</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Fri, 09 Oct 2015 12:50:30 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>Yes, that is a workaround we already applied. But please do inform us regarding CROS-397 and please confirm if this will work the same with iOS since the EditText property from the document is also bound to a string value. And if the iOS approach is going to work with more than one editable textbox as oppose to the sample shown on the document.
As always, thank you for your support.</description></item><item><title>How to Use Crosslight to Bind Custom ListItemView with Inline Editing?</title><link>http://www.intersoftsolutions.com/Community/Crosslight/How-to-Use-Crossli/</link><pubDate>Tue, 22 Sep 2015 19:19:21 GMT</pubDate><dc:creator>jtungol@silentpartnersoft.com</dc:creator><description>&lt;p&gt;Hi Guys,&lt;/p&gt;&lt;p&gt;Looking at the attached mockup screen, is this possible with Crosslight binding? The goal of this is to provide a good user experience. While using a ListView and FormEditor to edit each item, it's not a good user experience to go back and forth from views just to modify a single or few editable values. This is relatively easy with Windows Phone or WinRT in terms of binding and batch update the list once the user clicks Done/Save and/or Back (if IsDirty is true only). But we need to this on iOS and Android as well... so, is this possible with Crosslight binding solutions? Of course, a sample for iOS and Android would be very much appreciated. Thanks!&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;img alt="" src="http://i.imgur.com/nm3kT8S.jpg" style="border:none; width:283px; height:483px;"&gt; &lt;/p&gt;</description></item></channel></rss>