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
I'm afraid that WebScheduler 3 has now been discontinued for several years and there are not going to be any further updates for it. We have introduced full support for IE 11 and Google Chrome browser in WebScheduler 4.
You can download a 30-day, fully functional, trial version to experience WebScheduler 4 control.
Around mid-August 2014, Xamarin introduces a major improvement to the APIs for iOS and Mac product. One of which is the Unified API with 64-bit support. (source: Xamarin blog, Unified API with 64-bit Support for iOS and Mac)
At this moment, the Unified API is currently in beta. As you may know, Crosslight is built on top of Xamarin technology. Crosslight will soon support the Unified API for Xamarin.iOS when it has more stable and mature.
There is a way to show translucent background on a modal popup using Crosslight way.
Crosslight has UIBlurView which can be used with modal view using special technique. Currently the Crosslight development team is working to support this scenario. I'll get back to you as soon as I heard anything from the team regarding this scenario.
I’m afraid that WebGrid 6 has now been discontinued for several years and there are not going to be any further updates for it. Intersoft has enhanced and improved the exporting to xml in WebGrid 8.
I recommend you to upgrade your WebGrid to WebGrid 8. The trial of WebGrid 8 can be downloaded at http://www.intersoftpt.com/requesttrial.
I created a simple sample of WebGrid where the datasource is DataTable; and was able to export WebGrid's data to XML without any problems. Please find my sample in the attachment; test it on your end; and let me know if you have different result.
For your information, I'm using the latest version of WebGrid 8 in my local end.
I use button with DelegateCommand and do the following to clear the CheckedItems property.
private void ExecuteClearCheckedItems(object obj) { (CheckedItems as IList).Clear(); }
Clicking the button will clear the checked items in the UXGridView (please ensure that the binding Mode has been set to TwoWay).
Hope this helps.
Apologize for the delay in sending this.
I created a simple project of UXGridView based on your description.
..., and the collection is cleared and re-loaded, the UXGridView entirely loses the column footers and they become blank.
Could you please kindly modify my sample by applying "cleared and re-loaded" until reproduce the reported problem. Please send back the modified sample to us to be investigated further.
You can safely pass the repository class for the ViewModel by using Injection of Container technique.
The contructor of ExpenseListViewModel should look like following:
public ExpenseListViewModel() { ... this.SourceItems = this.Repository.GetAll().ToObservable(); ... } private IItemRepository Repository { get { if (Container.Current.CanResolve<IItemRepository>()) return Container.Current.Resolve<IItemRepository>(); else return new ItemRepository(); // for designer support } }
The IItemRepository object is registered in the contructor of AppService, such as shown in the following snippet code:
public sealed class MyInventoryAppService : ApplicationServiceBase { public MyInventoryAppService(IApplicationContext context) : base(context) { Container.Current.Register<IItemRepository, ItemRepository>().WithLifetimeManager(new ContainerLifetime()); ... } }
ItemListViewModel.cs and AppService.cs (MyInventory.Core) implements the same technique and can be used as reference. Hope this help.
This problem has been forwarded to the WebTextEditor development team. It is filed under ASPNET-136. I will keep this thread updated with any news I heard from the team regarding ASPNET-136.
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