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
Hello,Since this topic (WebCombo inside WebDialogBox) is the difference issue from the previous one, if you don’t mind, could you please create the new thread regarding this issue (WebCombo inside WebDialogBox)?In the new thread, could you please provide me the simple runnable that replicate the issue as well?So I can help you to find the solution for that issue.Thank you very much.Regards,Hans.
Hello,Thank you for the question regarding WebCombo.Currently we are investigating the Intersoft product regarding Internet Explorer 11 compatibility.However, we can’t provide you the tiem exact time when the hotfix will available.We will let you know if there is an update regarding Internet Explorer 11 compatibility.I apologize for any inconvenience this problem may have caused you.Thank you for your understanding.Regards,Hans.
Hello,Thank you for the reply.The problem occurs due to the WebCombo haven’t had time to refresh or take the new result based on your new input. (That is default behavior from WebCombo).I have a workaround to give the WebCombo time to refresh or take the new result.I add validation code in OnEditKeyDown client side event of WebGrid. Here’s the example snippet code:
function WebGrid1_OnEditKeyDown(controlId){ var WebCombo1 = ISGetObject("WebCombo1"); var key = event.keyCode; if (key == '9' && WebCombo1.IsDirty) // If user press TAB key and the WebCombo have new input { if (WebCombo1.Text != WebCombo1.TextObj.value) { WebCombo1.HideDropDown(); } } }
You could download the sample regarding this workaroung from this link: http://sdrv.ms/HociNWRegards,Hans.
Hello,Thank you for the reply.This time I use WebGrid client side event, “OnExitEditMode” event. In that event, I add validation code like in my prior post.Here’s the example code how I implement the validation code:
function WebGrid1_OnExitEditMode(controlId, tblName, editObject){ var WebGrid1 = ISGetObject(controlId); var WebCombo1 = ISGetObject("WebCombo1"); if (WebCombo1.ResultBox) { if (!WebCombo1.ResultBox.isOpen) { WebCombo1.SetFocus(); WebCombo1.ShowDropDown(); editObject.ToCellObject().Select(); return false; } } else { WebCombo1.SetFocus(); WebCombo1.ShowDropDown(); editObject.ToCellObject().Select(); return false; } }
I attached two samples regarding this workaround.The first one is the modified “testb” page. I add OnExitEditMode client side event.The second one is a simple sample about WebGrid with WebCombo within. I bind the WebGrid & WebCombo to access data source (Northwind database & Shippers table).You could download the sample from this link: http://sdrv.ms/HfABNGPlease kindly have review on the sample to see the result.Thank you for your help.Regards,Hans.
function WebCombo1_OnLostFocus(controlId) { var WebCombo1 = ISGetObject(controlId); if (!WebCombo1.ResultBox.isOpen) { WebCombo1.SetFocus(); WebCombo1.ShowDropDown(); } }
window.setTimeout(function () { wgGetRowByElement(destRow).Select(); wgHighlightEditCell(destCell); }, 1);
Hope this helps.Regards,Hans.
Hello,Thank you for the reply.Yes, you could provide any video file format, however please kindly compressed the video file (like zip or rar file) before you send the file.If you don’t mind, it is possible to you to provide us the simple sample (your WebScheduler configuration), so that we can investigate your problem further more.Thank you for your help.Regards,Hans.
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