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
Hi Bernard,
I have seen your sample, it runs normally,I think Maybe my html form has some problems, when I create a new project, the problem doen not reappear, thank you very much!
Hi Hans,
I have seen the samples, and this helps me to realize the Hierachical mode. Thank you very much!
Hi Yudi,
I just have another problems in UXCalendar,in the doucuments, it said we can add events to UXCalendar by using Events property or EventsSource property. I know how to use EventSource property to add event, but using Event property to add event puzzled me , would you give me a sample that using Event property add event? Thank you very much!
Thanks for your video, I got it ! Thank you very much!
Thanks for your sample,and depending on your sample,I just know my error now,thank you very much!
Thank you very much for your sample, and I ran it ,it executed successfully, and I know, use DataSource control it can work fine. But my doubt is that I didn't use DataSource control to bind the grid,I just use WebGrid1_InitializeLayout and WebGrid1_PrepareDataBinding above,and set the CategoryID valueList in WebGrid1_PrepareDataBinding, just see the attachement in previous topic, it cause error, so I wonder if it should use datasource control to bind the grid and valuelist,or it may cause error? the following is my code,Thank you !
protected void WebGrid1_InitializeDataSource(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e) { e.DataSource = service.GetProducts(); }
protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e) { if (!IsPostBack) { WebGrid1.RetrieveStructure(); } WebGrid1.RootTable.Columns.GetNamedItem("CategoryID").UseValueListForSorting = ValueListSorting.Yes; WebValueList v1 = WebGrid1.RootTable.Columns.GetNamedItem("CategoryID").ValueList; if (!v1.IsDataCached()) { DataTable dt = service.GetCategories(); v1.DataSource = dt; } //v1.DataMember = "Categories"; v1.DataTextField = "CategoryName"; v1.DataValueField = "CategoryID"; }
protected void WebGrid1_InitializeLayout(object sender, ISNet.WebUI.WebGrid.LayoutEventArgs e) { WebGrid1.RootTable.Columns.GetNamedItem("CategoryID").UseValueListForSorting = ValueListSorting.Yes; WebValueList v1 = WebGrid1.RootTable.Columns.GetNamedItem("CategoryID").ValueList; if (!v1.IsDataCached()) { DataTable dt = service.GetCategories(); v1.DataSource = dt; } //v1.DataMember = "Categories"; v1.DataTextField = "CategoryName"; v1.DataValueField = "CategoryID";
}
protected void WebGrid1_CustomFilter(object sender, FilterEventArgs e) { WebGridFilter filter; filter = e.FilterColumns.GetNamedItem("CategoryName"); if (filter != null) e.FilterColumns.Remove(filter);
WebGridFilter oldFilter; oldFilter = e.FilterColumns.GetNamedItem("CategoryID"); if (oldFilter != null) { e.FilterColumns.Remove(oldFilter); filter = new WebGridFilter(); filter.Table = oldFilter.Table; // remember to set column member field BEFORE FilterType and FilterText filter.ColumnMember = "CategoryName"; filter.FilterType = oldFilter.FilterType; filter.FilterText = oldFilter.FilterText; e.FilterColumns.Add(filter); }
I got it now,I do it as you told me,it is right now, Thank you very much!
I have solved the problem now,I didn't set localcopy= true,so it cause the problem, thank you all the same, I have another problem now.When I install webui,the devforce services install automaticlly,if I want to create a project using Wcf RIA services,but it may auto load the devforce service,how to set it to avoid auto generating devforce service when creating a clientUi MVVM application project??
The following is my Configuration infomations:
I know that if I use project template like this: Intersoft ClientUI MVVM Data Application (DevForce),and just override the Ado.net Data entity Model as my own Data entity Model,it can work fine,but if I use project template ClientUI MVVM Application, it cause the above errors....
Hi Surya ,
OK,I know now,thank you very much for your 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