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 George,
Thank you for your running sample code, I am able to replicate the issue. I have fowarded this to our developer team and I will inform you as soon as it ready on our hotfix.
I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.
Best Regards,
Andi Santoso
Hi Tenika,
So sorry to tell you, but multiple row selection can not be used alongside with RowChecker feature, as both features will cause conflict and undesired effect to the selection result. You should enable only one of those two. For further infomation, we have it described on our doc at "ms-help://ISNet.WebUI.WebGrid.V7/ISNet.WebUI.WebGrid/Multiple Row Selection.html".
I hope it helps and please let me know if you have any other questions. Thank you.
Hi Maged,
Glad to hear that your problem is fixed and thank you for your information as well. Please do not hesitate to ask if you have any other questions. Thank you.
Hi Ewoudt,
Actually, that is a default behaviour of WebSpellChecker. After you ignore any one particular wrong word, you need to click on the spellcheck button again to move to the next wrong word. However, if you run our sample (WebTextEditor->SpellChecker->WebSpellChecker With ASP.Net TextBox Control), you will see that once you ignore, it will move to the next wrong word.
Hi Nicolas,
Based on your scenario, I believe that it would be better if we used OnRowSelect client side event. Because on OnCellClick client event, there is no object has been retrieved. It will get the cell object only instead of its row. But instead, when you use OnRowSelect client side event, you can get the row object and get the cell by its named item.
Here is the snippet of it:
function WebGrid1_OnRowSelect(controlId, tblName, rowIndex, rowEl) { var grid = ISGetObject(controlId); var SelectedObject = grid.GetSelectedObject(); var RowObject = SelectedObject.ToRowObject(); var cells = RowObject.GetCells(); alert(cells.GetNamedItem("Discontinued").Value); return true; }
Based on your scenario, I believe that it would be better if we used OnRowSelect client side event. Because on OnCellClick client event, it will get the cell object only instead of its row. But, when you use OnRowSelect client side event, you can get the row object and get the cell by its named item.
Just for your information, check box only return a value of true or false. It does not contain any text. I hope it helps and please, do not hesitate to ask if you have any other questions. Thank you.
Hi Mircea,
Thank you for you detail information, I am able to replicate your issue now. I have fowarded this issue to developer team. I will give you an advance notification as soon as possible when it is ready on our hotfix.
Hi Jocelyn,
Unfortunately, we do not support that kind of property. However, there is a workaround for this scenario. First, we need to use a client side event of WebGrid_onEndRowEditing. Then, undo it by changing its old and new value of cell according to its validation. Here is the snippet to do so:
function WebGrid1_OnEndRowEditing(controlId, row) { var maxValue = 10; var WebGrid1 = ISGetObject(controlId); if (row.GetCells().GetNamedItem("UnitPrice").Get("Value") > maxValue) { row.GetCells().GetNamedItem("UnitPrice").SetValue(row.GetCells().GetNamedIte m("UnitPrice").Get("OldValue"), true); } else { row.GetCells().GetNamedItem("UnitPrice").SetValue(row.GetCells().GetNamedIte m("UnitPrice").Get("Value"), true); } return true; }
Hi Johnny,
Actually, you can post any component in this forum. However, you might want to describe on what component you are having problem with. You, also, can attach an result image, code file for us to investigate and share information to other.
For you issue, we do have a property to do so. It is called "Wildcard Search". In order to do that, open the Smart Tag on your Webcombo, then check the "Allow Wildcard Search", it should give us a filter as “%search%”. I also attached you a screenshot of it.
Andi Santoso.
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