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
A fix is included in the 2009 R2 release. The WebInput in the release is version 4 build 1.
Without using SmartWebResources, you could try using IIS 7 compression, here are some article regarding IIS 7 compression, Configuring HTTP Compression in IIS 7 and Getting IIS 7 to Compress JavaScript
I have increased the priority of the issue. However, since our developer is taking a holiday leave for christmas, the earliest update / progress regarding this issue will most likely be available by January 2010.
If you wish to do it in the client side, my suggestion is to use the WebGrid initialize event handler to set the row position property of each row to the RowNumber cell. Here is the snippet for such scenario, in this case the RownNumber cell is the first column in the WebGrid:
function WebGrid1_OnInitialize() { var grid = ISGetObject("WebGrid1"); var rows = grid.RootTable.GetElement(WG40.BODY, WG40.HTMLTABLE).getElementsByTagName("tr"); for (var i = 0; i < rows.length; i++) { rows[i].getElementsByTagName("td")[1].innerText = grid.GetRowByElement(rows[i]).Position + 1; }}
On the other hand, the method will be similar for server side as well, however you will need to use the InitializeRow event handler:
protected void WebGrid1_InitializeRow(object sender, ISNet.WebUI.WebGrid.RowEventArgs e){ if (e.Row.Type == ISNet.WebUI.WebGrid.RowType.Record) { e.Row.Cells[0].Value = e.Row.Position + 1; e.Row.Cells[0].Text = (e.Row.Position + 1).ToString(); }}
From my experience using our controls in WebPart, you will need runtime license key. The runtimelicense key will be provided after purchasing our component.
The javascript error is commonly caused when you are missing WebUI Framework dll in your project bin folder. Please copy the ISNet.dll, ISNet.WebUI.dll, and ISNet.WebUI.Resources.dll to your project bin folder.
We have an article regarding client footprint optimization in our blog in the article Rich Feature in Low Client Footprint. The article discuss the ways to reduce the client footprint.
It seems this issue is caused by a bug. A bug report has been submitted to the developer. We will inform you if there is any progress or update regarding this issue.
A sample for such scenario has been provided in the WebCombo sample LoadOnDemand.aspx. An article in the WebCombo documentation has also been provided for LoadOnDemand in the article titled "Load On Demand" and "How-to: Apply load on demand in WebCombo"
It seems the issue is caused by a bug. A bug report has been submitted to the developer. We will inform you if there is any update or progress regarding this issue.
You could also utilize Load On Demand for self reference and paging in order to let the WebGrid load less data initially. The self reference load on demand sample has been provided in WebGrid tutorial SelfReference_LoadOnDemand.aspx and the paging load on demand sample in the WebGrid sample VirtualLoadwithCustomLoadonDemand.aspx, the sample demonstrate load on demand virtual page, however it should be similar with classic paging.
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