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
Based on my test using the latest nightly build the issue has been fixed, the fix will be release in the next hotfix release.
<BatchUpdateSettings HighlightChanges="false" />
rowObject.RowElement.setAttribute("CustomRowColor", "customrowcolor");
function WebGrid1_OnAfterExitEditMode(controlId, tableName, editObject) { var grid = ISGetObject(controlId); var selObj = grid.GetSelectedObject(); var row = selObj.ToRowObject(); var rowCells = row.GetCells(); var columnLength = grid.RootTable.Columns.length; var rowObject = row; var rowElement = rowObject.RowElement; if (rowElement != null && rowElement.getAttribute("CustomRowColor") == "customrowcolor") { for (var i = 1; i <= columnLength; i++) { var cell = rowElement.cells[i]; if (cell != null) { cell.style.setAttribute("backgroundColor", "Red", true); } } }}
Based on my test, unfortunately this issue is still open in ClientUI 4.
Using the latest ClientUI, ClientUI 4, commanding has run without any issue in WPF.
Just wish to inform that the taskbar issue has been fixed in the latest ClientUI release, ClientUI 4.
FYI, the GridPresenter has not fully support MVVM. However, it seems this issue is caused by a bug. A bug report has been submitted so the developer could analyze the issue further.
Thank you for the detail description of the issue. Based on my test, I also encounter the same issue as you described. It seems the issue is caused by a bug, I have submitted a bug report to the developer so the issue could be analysed further.
Using the technique discussed in this article, I have create a simple sample of WebCombo and PageStatePersister. In my simple sample, after postback which invoke the save viewstate method the WebCombo still have the data. Attached is the simple sample I created to test this issue.
Do you mind providing a simple runnable sample of your issue so we could analyse the issue further?
By default in BatchUpdate mode the WebGrid will apply a style for modified row. This style is applied by setting the cell attribute, which will override the style you already applied. My previous post suggestion is to override this default style during the AfterExitEditMode event handler with the style you already defined.
In order to integrate the RowContextMenu and AfterExitEditMode method, you could assign a custom attribute to the row in RowContextMenu, for example CustomColor='CustomColor', in the AfterExitEditMode event handler you only assigned the Red color to the row which has the CustomColor attribute.
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