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
Our problematic scenario is as following: We have a WebGrid in our application with all its columns created at runtime. A filter is applied on a date column through the filter bar. We then move down to a record and edit a field (not the date field). When the record is saved (by pressing Shift+Enter), the record disappears from the grid! If the grid is refreshed, the record shows up again.
This happens only when a date filter is applied. It works fine for other type of fields.
Version of WebGrid 9.0.7200
Any ideas?
Regards,
Dimitris
I created a simple page of WebGrid based on your description. All its columns created at runtime.
protected void WebGrid1_PrepareDataBinding(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e) { string Columns = ""; if (!IsPostBack) { // clear all columns before repopulated WebGrid1.RootTable.Columns.Clear(); WebGrid1.RootTable.SortedColumns.Clear(); WebGrid1.RootTable.GroupedColumns.Clear(); WebGrid1.RootTable.FilteredColumns.Clear(); Columns = "EmployeeID,LastName,FirstName,Title,BirthDate,HireDate,Address,City,Region,Country"; string[] ColumnsCollection = Columns.Split(','); foreach (string Column in ColumnsCollection) { WebGridColumn col = new WebGridColumn(); col.DataMember = Column; col.Caption = Column; WebGrid1.RootTable.Columns.Add(col); } } }
Following list shows the step-by-step that were done on my local test in order to test the reported problem.
I enclosed my simple sample as attachment. Please have the sample evaluated on your end and let me know if you find anything that I might miss during my attempt to reproduce the problem.
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