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
Thank you for valuable feedback regarding printing feature in WebGrid. The feedback has been forwarded to WebGrid development team and filed under ASPNET-181.
Should I heard any news regarding ASPNET-181, I will let you know.
I'm afraid that currently there is no method on closing the browser window programmatically. It is the default behavior by the browser itself.
... So those sites use the <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" /> solution to force the browser to ignore the compatability settings and render the page in the browsers standard mode, works great except for the webGrid. Webgrid appears to ignore this and uses the compatability mode setting of the browser. So for IE10, the columns are misaligned and in IE11 no data is shown at all ...
I tried to reproduce the reported problem by creating a simple page of WebGrid. The page uses html5 doctype declaration: <!DOCTYPE html>. RenderingMode of WebGrid is set to HTML5. The meta tag (in the quoted message) also added into the page.
However, I was unable to replicate the problem. WebGrid is rendered in IE 11 without any issues. I'm using 2015 R1 controls with following details: WebGrid 9.0.7200.4 and WebUI.NET Framework 3.0.5000.916.
Should you find anything that I might miss during my attempt to reproduce the problem, please feel free let me know. If necessary, I can send you my simple page.
Thank you for the idea regarding waterfall layout supported in iOS and Android.
I will have this forwarded to Crosslight development team. The team will check the feasibility to implement this feature in the next update of Crosslight.
Once again, thank you for your feedback. I will keep this thread updated with any news I heard from the team regarding this waterfall layout.
Edited on March 20, 2015 3:19 AMReason: Update backlog number information about the feature request.
The feature request is filed under CROS-769.
... But it is creating problem on Chrome on resizing. Footer is not showing which I am using after Grid section.
Try to set the Height and Width property of WebGrid to 100% instead of enabling AutoHeight and/or AutoWidth. If this still doesn't help, you can try to invoke DoResize() method of WebGrid when the grid is resized.
function OnResize() { var WebGrid1 = ISGetObject("WebGrid1"); wgDoResize(true, true); return true; }
Please feel free to let us know whether this helps or not.
Glad to hear that installing Android SDK tool Revision 20 resolve the problem.
Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.
Thank you for the sample. The reported problem is reproducible using Crosslight 2.0.5000.52 hotfix.
Crosslight 2.0.5000.60 nightly build is now available in here. This update includes the fix for your reported problem.
Please carefully follow the step-by-step guidance in applying the update that can be found in here (http://developer.intersoftpt.com/display/crosslight/Updating+Crosslight). Should the problem persist, please feel free to let us know.
Thank you for your recent inquiry regarding client-binding WebCombo.
Could you please try to use different approach to load new data to the wcStock WebCombo (to re-bind data table instead of adding new rows)? Following snippet code shows a simple sample to rebind data table.
function reloadStockItems (jsonItems) { alert(jsonItems); var items = eval(jsonItems); var rows = purchaseOrder.wcStock.GetRows(); for (var i = 0; rows[i] != null; i++) { rows.Remove(rows[i], true); } purchaseOrder.wcStock.Values = null; var dataTable = new ISDataTable(); var idColumn = new ISDataColumn(dataTable); var descriptionColumn = new ISDataColumn(dataTable); var categoryDescriptionColumn = new ISDataColumn(dataTable); var groupDescriptionColumn = new ISDataColumn(dataTable); /* setup data columns */ dataTable.Name = dataTable.TableName = "Root"; idColumn.Name = idColumn.ColumnName = "ID"; descriptionColumn.Name = textColumn.ColumnName = "Text"; categoryDescriptionColumn.Name = checkColumn.ColumnName = "Bool"; groupDescriptionColumn.Name = descColumn.ColumnName = "Desc"; /* add columns to data table */ dataTable.Columns.Add(idColumn); dataTable.Columns.Add(descriptionColumn); dataTable.Columns.Add(categoryDescriptionColumn); dataTable.Columns.Add(groupDescriptionColumn); /* add rows to data table */ for (var i = 0; i < 100; i++) { var dataRow = dataTable.NewRow(); dataRow.Cells.GetNamedItem("ID").Value = i; dataRow.Cells.GetNamedItem("Text").Value = "Item " + i; dataRow.Cells.GetNamedItem("Bool").Value = (i % 3 != 0); dataRow.Cells.GetNamedItem("Desc").Value = "Description " + i; dataTable.Rows.Add(dataRow); } /* bind the data table to WebCombo */ wcStock.SetDataSource(dataTable); wcStock.DataBind(); wcStock.Render(); event.cancelBubble = true; event.returnValue = false; }
I found that (in a working sample) using this approach doesn’t trigger OnAfterItemSelected client-side event. Please let us know whether this help or not.
Our development team is currently working to make our control compatible with the Visual Studio 2013. Should I hear any news from the team regarding this, I will let you know by updating the information in this thread.
Our development team is currently working to make WebGrid control compatible with the IE 11 browser. Should I hear any news from the team regarding this, I will let you know by updating the information in this thread.
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