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
Your reported problem is already queued in the dev-team work items. However, it hasn't been processed further due to the release of 2016 R1 priorities and urgency.
I will keep you informed when the nightly build is available and ready to be evaluated.
This kind of feature is not available yet in Barcode reader service of Crosslight.
I have submitted this as feature request to Crosslight development team. The report is filed under CROS-1016.
Should I hear anything from the team regarding CROS-1016, I will let you know.
Hi Yudi, now the error 500.23 disappeared...
Glad to know that after configure the handlers and modules declaration in web.config file, the site now works on IIS 8.5 and Integrated Pipeline mode. Error 500.23 no longer persist.
... but I'm getting the following errors/problems:MS IE 11 - see the attachment screenshot shown from the debbuger
... but I'm getting the following errors/problems:
MS IE 11 - see the attachment screenshot shown from the debbuger
I suspect that you might use older version of WebGrid and WebUI.NET Framework 3.0. I recommend you to apply latest build of WebGrid 9 and WebUI.NET Framework 3.0 in order to resolve the problem on IE 11 browser.
If the issue still persist after apply latest build of WebGrid 9 and WebUI.NET Framework 3.0, please feel free to let me know.
Firefox 43.xx - the filter icons aren't displayed, only dots .... instead.
I tried to reproduce the reported problem by rendering the live sample of Filtering.aspx in Firefox 43.0.2 with no luck. The filter icon displayed without any problems.
Please ensure that you have applied latest build of WebGrid 9 and WebUI.NET Framework 3.0 and let me know the result.
Moreover, using WebGrid designer I got the error: Intersoft componet Editor for VS 2012 is either not installed or corrupted. ...
Try to remove ISNet.WebUI.WebGrid.Editor.dll and ISNet.WebUI.WebGrid.Editor.Metro.dll from GAC, then update ISNet.WebUI.WebGrid.Editor.dll and ISNet.WebUI.WebGrid.Editor.Metro.dll (%programfiles(x86)%\Intersoft Solutions\WebUI Studio for ASP.NET\WebUI.NET Framework 3.0\Bin) in GAC. You can use gacutil command to do this. Please check the detail command in here.
For IIS version below 7 and Classic Pipeline mode, you can define httpHandlers and httpModules element to the system.Web element. Example:
<configuration> <appSettings> <add key="ISNet.WebUI.ISRes_Registered" value="true"/> ... </appSettings> <system.web> <httpHandlers> <add path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" validate="true"/> <add path="ISChart.axd" verb="GET" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" validate="true"/> </httpHandlers> ... </system.web> </configuration>
For IIS 7+ and Integrated Pipeline mode, the handlers and modules element to the system.webServer element. Example:
<configuration> <appSettings> <add key="ISNet.WebUI.ISRes_Registered" value="true"/> ... </appSettings> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <handlers> <remove name="ISRes.axd_GET"/> <remove name="ISChart.axd_GET, POST"/> <add name="ISRes.axd_GET" path="ISRes.axd" verb="GET" type="ISNet.WebUI.WebResourceHandler, ISNet.WebUI, Version=3.0.5000.1, Culture=neutral, PublicKeyToken=b1f2a8511635667a" preCondition="integratedMode"/> <add name="ISChart.axd_GET, POST" path="ISChart.axd" verb="GET, POST" type="ISNet.WebUI.WebGrid.Chart.ChartRequestHandler, ISNet.WebUI.WebGrid" preCondition="integratedMode"/> </handlers> </system.webServer> ... </configuration>
I enclosed the modified version of web.config file as attachment. Please have the modified file evaluated on your end and let me know whether it helps or not.
When a new HTTP project is created in Vista or Windows 2008 Operating System (or newer), the default application pool is using DefaultAppPool, which uses IIS 7.0 (or newer) Integrated .NET pipeline mode. Intersoft’s components use several HttpHandlers for managing resources and chart engine. This article guides you to migrate the existing application configuration file to take advantage of the IIS 7.0 (or newer) Integrated pipeline mode.
Should the problem persist after follow the method to add the configuration, please send us your web.config file so that I can assist you further.
Glad to hear the good news.
Should you need further assistance or run into any problems regarding our controls, feel free to post it into our community site. We would be happy to assist you again.
In order to set a percentage height, its parent element must have an explicit height. So the parent (container) of WebGrid, in this case is the div element, must have an explicit height property. That height can also be percentage, that just moves the problem up to the next level. This means the parent's parent (grand-parent) height must be defined too. This could go until the html root element.
So set the height of the html and the body element to 100%, as well as every single ancestor element of that element that you wish to have the 100% height in the first place.
Add following style tag into the page, Webcomboexpbasic.aspx:
<style type="text/css"> html, body, form { height: 100%; width: 100%; padding: 0; margin: 0; } </style>
Next, set the grid's parent height to specific height, for example 100%.
<div style="height: 100%;"> <ISWebGrid:WebGrid ID="WebGrid1" runat="server" DefaultStyleMode="Elegant" UseDefaultStyle="True" Height="50%" Width="98%" ...> ... </ISWebGrid:WebGrid> </div>
It's all set. The height issue no longer persist and the message "There are no rows in this view." appear in the correct position.
This should helps.
Try to invoke ClearSelectedObject() method after calling UndoChanges(), so your code will look like following:
function WebGrid1_OnAfterExitEditMode(controlId, tableName, editObject) { var grid = ISGetObject(controlId); var RowObject = grid.GetSelectedObject().ToRowObject(); var ItemId = RowObject.GetCells().GetNamedItem("ItemId"); if (CheckValue(ItemId.Value)) { //Here Checkvalue is function, to validate the Item Value RowObject.UndoChanges(); grid.ClearSelectedObject(); } }
... on a client, we would access that property like this: wgGetCellByName(SelectedRow,"EmployeeId").EmployeeName; and that worked in IE8 and below, however it doesn't work in HTML5 browsers. With the new DOCTYPE html, in new browsers, that gets rendered as a direct property on a combo object, while in older browsers it's rendered as a member of attributes array on a combo object in js. ...
on a client, we would access that property like this:
wgGetCellByName(SelectedRow,"EmployeeId").EmployeeName;
and that worked in IE8 and below, however it doesn't work in HTML5 browsers. With the new DOCTYPE html, in new browsers, that gets rendered as a direct property on a combo object, while in older browsers it's rendered as a member of attributes array on a combo object in js.
I recommend you to switch your JS code to the new client-side API of WebGrid. In order to get value from hidden column using HiddenDataMember, you can use following snippet code:
function GetValueFromHiddenColumnUsingHiddenDataMember() { // get the client object reference of WebGrid1 var grid = ISGetObject("WebGrid1"); // get the row object of the selected object var rowObj = grid.GetSelectedObject().GetRowObject(); // get cells of the row object var cells = rowObj.GetCells(); // get EmployeeId cell var employee = cells.GetNamedItem("EmployeeId"); var employeeName = customer.GetElement().attributes["EmployeeName"].value; alert(employeeName); }
Have you encountered this issue and is there some solutio to it?
I can reproduce the problem when using wgGetCellByName. The problem no longer persist when the recent client-side API is used.
From your description and snippet code, I created a simple Web Application. The following feature: sorting, exporting, and paging are working as expected.
Since WebGrid 8 has been discontinued, I tested the reported problem using WebGrid 9.
I enclosed my sample as reference. Please have the attached sample evaluated on your end and let me know whether this helps or not.
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