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
Thanks for your answer.
I don't really understand why the ListPresenter doesn't support the CollectionViewSource as the View property implement the IEnumerable interface. I though that was the only need of the ItemsSource ... Am I wrong ?
Is there a workwaround to be able to sort or filter the elements in a ListPresenter without using a CollectionViewSource ?
Should we avoid to use the List/GridPresenter components to avoid futur problems ?
Regards,
Hi,
We found a way to resolve our issue.
We changed the "public static IModalWindow GetInstance(string viewType)" method like this :
Original :
public static IModalWindow GetInstance(string viewType) { return UXShell.Current.RootApplication.CreateInstance(viewType) as IModalWindow; }
public static IModalWindow GetInstance(string viewType)
{
return UXShell.Current.RootApplication.CreateInstance(viewType) as IModalWindow;
}
Modified :
public static IModalWindow GetInstance(string viewType) { Assembly assembly = Assembly.GetCallingAssembly(); return assembly.CreateInstance(viewType) as IModalWindow; }
Assembly assembly = Assembly.GetCallingAssembly();
return assembly.CreateInstance(viewType) as IModalWindow;
Any idea if we could have any side effect ?
regards,
Our DLL were created as "Silverlight Class Library". They are part of the Silverlight project (the silverlight application has a dependency on them).
Our concern is about the naming convention on this call :
UXShell.Current.RootApplication.CreateInstance(viewType)
What should be the value of viewType in our case ? « Assembly.View » ? « Assembly/View » ? Something else ?
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