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,Thank you for the reply.I apologize for the inconvenience.This issue appears due to the WebGrid doesn’t enter edit mode when you double click on the cell.I made a WebGrid page. I bind the WebGrid to access data source (Northwind.mdb & Shippers table) and set the OnCellDblClick client event to the WebGrid as well.In OnCellDblClick event, I try to make changes on Phone column.Here’s the Javascript code:
function WebGrid1_OnCellDblClick(controlId, tblName, rowIndex, cellIndex, cellEl){ var WebGrid1 = ISGetObject(controlId); var RowObject = WebGrid1.GetSelectedObject().ToRowObject() var CellObject = RowObject.GetCell('Phone'); CellObject.ActivateEdit(); CellObject.SetText("123456", true); CellObject.SetValue("123456"); RowObject.SetDataChanged(); // indicates that this row's data has been changed. WebGrid1.MarkEdit(); // sets the row's status as edited, as if user has typed inside the cell. return true; }
Please kindly have review on the page as well. You could get the page from this link: http://1drv.ms/1bNO8dJHope this helps.Regards,Hans K.
if (cellIndex == 17){ grid.GetSelectedObject().ToRowObject().GetCell('ANKUNFT').SetValue(now, true); grid.GetSelectedObject().ToRowObject().GetCell('ANKUNFT').SetText(datum.toString()); grid.GetSelectedObject().ToRowObject().GetCell('STATUS').SetValue('0', true); grid.GetSelectedObject().ToRowObject().GetCell('STATUS').SetText('Awensend'); } if (cellIndex == 18) { grid.GetSelectedObject().ToRowObject().GetCell('ABREISE').SetValue(now, true); grid.GetSelectedObject().ToRowObject().GetCell('ABREISE').SetText(datum.toString()); }
To:
if (cellIndex == 17) { grid.GetSelectedObject().ToRowObject().GetCell('ANKUNFT').SetValue(now); grid.GetSelectedObject().ToRowObject().GetCell('ANKUNFT').SetText(datum.toString(), true); grid.GetSelectedObject().ToRowObject().GetCell('STATUS').SetValue('0'); grid.GetSelectedObject().ToRowObject().GetCell('STATUS').SetText('Awensend', true); } if (cellIndex == 18) { grid.GetSelectedObject().ToRowObject().GetCell('ABREISE').SetValue(now); grid.GetSelectedObject().ToRowObject().GetCell('ABREISE').SetText(datum.toString(), true); }
Hope this helps.Regards,Hans K.
Hello,Thank you for the question regarding WebGrid.You could do a custom sorting in “OnCustumSort” WebGrid’s server side event.Here’s the example snippet code regarding custom sorting:
protected void WebGrid1_CustomSort(object sender, ISNet.WebUI.WebGrid.SortEventArgs e){ WebGridGroup sortCol; sortCol = e.SortColumns.GetNamedItem("ContactName"); WebGridGroup oldSortCol; oldSortCol = e.SortColumns.GetNamedItem("CustomerID"); if (oldSortCol != null) { sortCol = new WebGridGroup(); sortCol.Table = oldSortCol.Table; sortCol.ColumnMember = "ContactName"; if (e.SortColumns.GetNamedItem("CustomerID").SortOrder == SortOrder.Ascending) { sortCol.SortOrder = SortOrder.Ascending; } else if (e.SortColumns.GetNamedItem("CustomerID").SortOrder == SortOrder.Descending) { sortCol.SortOrder = SortOrder.Descending; } e.SortColumns.Remove(oldSortCol); e.SortColumns.Add(sortCol); } }
Hello,Thank you for the reply & the information.I will forward this issue to the developer team and I will let you know if there is an update as soon as possible.We appreciate your patience in the meantime.Regards,Hans K.
Hello,I apologize for any inconvenience this problem may have caused you.Thank you for the question & snippet code.Could you help me to provide more information regarding your issue?Could you show me what error message & the result that you get in your local end? (for example, the screenshot).So that I can help you further more. Thank you.Regards,Hans K.
Hello,I apologize for any inconvenience this problem may have caused you.By default, the WebCombo in 2007 R1 release doesn’t designed for Internet Explorer 11 browser.The latest WebCombo version in 2013 R1 release is already compatible with Internet Explorer 11 browser.If you want to use WebCombo in Internet Explorer 11, I suggest you to update your current WebCombo to the latest version.Thank you for your understanding.Regards,Hans K.
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