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
If you would like to resize the EditingForm size you could set the EditingForm container height and/or width during OnEditingFormShow client side event handler. Here is the snippet:
function WebScheduler1_OnEditingFormShow(controlId, action, eventView, eventType, newType) { var s = ISGetObject(controlId); var editWindow = s.GetEditingFormWindow(); s.EditingDialogBox.Height = "550px"; s.EditingDialogBox.Width = "750px"; return true;}
The snippet will resize the EditingForm with a 750px width and 550px height.
The processing request message is shown when non of our live chat personel is currently available. Please request the live chat in the allocated live chat time, Monday - Friday from 8AM - 5PM (GMT+7) . Beside thos hours you could send your issue to the this public forum or if your issue contains sensitive information, you could send the issue to technical@intersoftpt.com
We have a live chat available during our working hours. You could read about this support in here. The page also has a link to start the Live Chat.
You could use the ExitEditMode client side event handler to fill in the ProductName cell. Here is the snippet:
function OrderDetails_WebGrid_OnExitEditMode(controlId, tblName, editObject){ var wg = ISGetObject(controlId); var cellObj = editObject.ToCellObject(); if (cellObj.Name == "ProductID_WebGridColumn") { if (editObject.element.IsInProgress) { editObject.ToCellObject().Select(true, true); return false; } else { if (editObject.element.GetSelectedRow() != null) { cellObj.GetRow().GetCell('ProductName_WebGridColumn').SetText(editObject.element.GetSelectedRow().cells[1].innerText); cellObj.GetRow().GetCell('ProductName_WebGridColumn').SetValue(editObject.element.GetSelectedRow().cells[1].innerText); } } } return true;}
The IsInProgress conditional check is used if the WebCombo is still in the process of auto completing the inputed text.
In your scenario, you will need to invoke the RefreshUIElement function in the WebFishEye in order to render the new stack button. Here is the modified snippet for the AddStackButtonWithDelay
private void AddStackButtonWithDelay(double delayDuration){ Storyboard toolbarDelay = new Storyboard() { BeginTime = TimeSpan.FromSeconds(delayDuration) }; toolbarDelay.Completed += (s, e) => { AddStackButton(); _MainToolbar.RefreshUIElement(); }; toolbarDelay.Begin();}
During OnClick event handler, you will also need to invoke this method as well. However, in the current version of WebFishEye this will result in an error. The proposed fix is to set the event parameter Handle property to True, currently the Handle property is not available. This fix will be available in the next build of WebFishEye.
Currently WebAqua will cause an error if we try to modify button collection during click event handler. A bug report has been submitted to the developer. We will inform you if there is any update or progress regarding this issue.
I will need to discuss this issue with our developer. We will inform you if there is any update or progress regarding this issue.
Thank your for the detailed report. I will pass this information to our developer for further analysis. We will inform you if there is any update or progress regarding this issue.
The CalculateAllData option is intended for calculating all the data in the grid not only per group. Currently, WebGrid has not supported the feature to show the group total from multiple pages.
However, WebGrid has an option to inform the user that the group is only partially shown because of paging. Here is the option to show this information, PagingDetectPartialGroupRows="true", available under LayoutSettings.
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