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 Huzefa,
I am apologize for the delay answer, because I have to discuss about the possibility of this feature first. Thank you for your valuable feedback regarding our controls, but, I'm afraid that this feature could not be implemented since our development team are busy with their tight deadline schedule for our next release.
WebGrid have the ability to perform several kinds of Editor for each row in one column. However, currently there is no way for scenario that using different DataType between the column and the editor. For example, if the column's DataType is String, then the editor that you could use are TextBox, MultilineTextbox. Meanwhile, it is not possible to use eg checkbox (Boolean) or Calendar (Datetime) for the editor (please also notes that some editor need to be rendered from the first initialize, eg by put it as default editor). For more detail about this, please kindly check for the attachment of simple sample.
In further chance you need another help, please feel free to ask.
Best regards,
Julia
Hi David,
Unfortunately javascript is used inside most of our components (including WebGrid). So to make it works, you will need to enabled the javascript.
Hi Anup,
If you want to change the item text in WebGrid's header context menu, you can simply use SetText in OnColumnContextMenu event, as show in the sample code below:
function WebGrid1_OnColumnContextMenu(controlId, col, menu, isGroup, location) { var WebGrid1 = ISGetObject(controlId); menu.Items.GetNamedItem("mnuSortAsc").SetText("もし もし"); return true; }
You will notice that "Sort A to Z" is change to "もし もし".
Hope this could help.
Hi Johnny,
In order to filter a non-editable column, you can use this snippet :
function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl) { var WebGrid1 = ISGetObject(controlId); if (WebGrid1.GetSelectedObject().GetRowObject().Type == "FilterRow") { WebGrid1.GetSelectedObject().ToRowObject().GetCells().GetNamedItem("CustomerID").SetForceNoEdit(false); } else { WebGrid1.GetSelectedObject().ToRowObject().GetCells().GetNamedItem("CustomerID").SetForceNoEdit(true); } return true; }
with AllowEdit is set to true.
Hope this help.
Regards,
Hi Maged,
I have tested your scenario and I could replicate your issue. However, this issue is not a bug. Since the grid need time to process the data, then when you choose the next data quickly, the grid is already in progress for the first data. Basically the progress itself happened in almost no time, which can be counted as milliseconds. So the second grid will show it as the result.
You might want to see our sample that fit with your scenario. The sample name is SendingCustomRequest.aspx.
Hope this information helps.
Hi Scott,
Thank you for the details. I have tested the sample Client_RowsCells.aspx and managed to replicate the issue. I have forwarded the issue to our development team as WI #703. I'm sorry for the inconvenience. I will inform you for any news regarding the issue in this thread.
Hi Alex,
The checking compatibility of QTP is still in progress. Currently our development team is still focus into our next product that will be releasing soon. I'm apologize for the delay.
Thank you for your interest with our products. May I know the product that you want to upgrade, is it Premier Edition or ASP.NET ?
Below is the pricelist for renew subscription
- Premier Edition cost $ 999 USD/1 license
- ASP.NET cost $ 799 USD/1 license
There should't be any inconvenience when upgrade our product. To use the latest product, it is recommended to uninstall the product first. It can be done easily by doing the following step:
Or in case you want to use multiple version, this article would be very helful for you :
http://www.intersoftpt.com/Build/SidebysideInstallation
Please let us know if you need any helps.
Hi Yousif,
May I know your setting for PagingMode property? If you set it to ClassicPaging, you need to set PagingExportMode to ExportAllData. But if you set it to VirtualPage with default VirtualLoadMode, all record will be exported automatically.
Please notes that if you set VirtualLoadMode to custom the export data that will be exported is depend on number set in VirtualPageSize.
Hi Hamdy,
Thank you for the sample.
Since you are going to close the window from an IFrame button, it is recommended to access the window parent first. Therefore, you could use the following code to modified the code in PageDialogBox sample:
function Button2_onclick() { var wnd = window.parent.ISGetObject("WebDesktopManager1"); var activeWnd = wnd.GetActiveWindow(); alert(activeWnd.Name + " is closed"); activeWnd.Close(); }
I hope this could helps.
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