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 TIA,
Thanks for the sample, it helps me to replicate the issue. I will forward this to our development team and they will check it first. If it's confirmed as bug from our control then we will provide hotfix for the issue.
Best Regards,
Gordon Tumewu
Hi,
I am really sorry but the event only in client side, for now WebGrid didn't have server side event to handle the error. If you want, you can submit this as feature request in our developer network >> My Community Center >> Product Feedback so our development team can check the possibility to implement this feature.
Hi Dasha,
Actually once you have tab the menu command by tabbing, then after the menu command got focussed, you just need to use the down navigation arrow of your keyboard to expand.
If you cannot expand the menu command using the down navigation arrow of your keyboard, could you inform me your WebDesktop and Framework build version?
Hi Zahid,
I am sorry but the scenario cannot be done from client side, you need to do it server side.
Hi Vince,
Unfortunately WebCombo didn't support the masking feature. You can submit it as feature request in our developer network >> Community center >> Product Feedback and our development team will check and can consider to implement this feature.
Hi Michael,
Try to use the following code to add the new row:
function wbtInsert_OnClientClick(controlId, parameter) { var wbtInsert = ISGetObject(controlId); var grd = ISGetObject("WebGrid1"); var newRow = grd.RootTable.NewRow(); var cells = newRow.GetCells(); cells.GetNamedItem("ProductName").SetText("xxx", true); cells.GetNamedItem("ProductID").SetChanges("false"); newRow.AddPendingChanges(); return true; }
Hope this helps.
Could you be more spesific about what size that you want to resize? Is it WebGrid size? Or it's WebDesktop windows size?
You can use OnUnhandledError client side event to change the error message. Below is the sample:
function WebGrid1_OnUnhandledError(controlId, tblName, lastRequestObject, errorString) { var grid = ISGetObject(controlId); grid.SetIdle(); grid.IsInProgress = false; grid.SetStatus1("", "ready", "CommonText/Ready") alert("String was not recognized as a valid date"); return false; }
Could you attach the html structure of the page? Also step to reproduce the issue?
Hi Al,
Try to use the following code:
function CloseWindows() { var dm = ISGetDesktopManager(); var length = dm.Windows.length; for (var i=0; i<length; i++) { var win = dm.Windows[0]; if (win.ClientVisible == true) { win.Close(); } } }
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