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 Shah,
Our developer teams are working for the fix. In couple of days, the fix should be ready. I will let you know when it's done.
Regards,Handy
Hello Madhavan,
I got a response from our developer teams. However, this is not a bug but it is a default behaviour.
The Rows.Count in the Grid object model would show the number of rows shown in the table, so it won't be the virtual one that being shown.To get the total rows, you can query to the datasource itself, i.e, the dataset, or other services that provide the real datasource.
Hello Yousif,
FYI, When you called around 7-7:30am Central, our US representative office has not started yet. If you need to call us regarding your issue, you can contact our Europe representative office. EU: +44-7810-55-1616.
Thank you for your guidance and sample. I am able to replicate your issue in here. I would report this issue to our developer teams. Please let me know if you have another question regarding this issue.
Hello Frank,
I think I found out the issue. The difference with Piere sample is, you did not use MasterPage.I tested that it does not work if the page is not using Masterpage. Please confirm if you also have the similar situation.I will report this to our developer teams.For next time, please help us by sending your simple sample that replicates the issue.With this way, we can save more times in figuring out what caused your issue.
The printscreen would not help much because you would need to ensure that you use the latest hotfixes. All hotfixes should be applied into your project bin folder. Please remember that you do not only need ISNet.WebUI.WebGrid.dll, but you also need ISNet.WebUI.WebGrid.Resources.dll. Both of them must to have the same build version. Please recheck the build version one by one. (Right click the file>>properties>>Version).If the issue still persists, please let me know your email address.
Regarding the phone call issue that you've reported, would you mind to let us know about the time when you phoned us?For your information, our phone line is only available during the office hours.So, If you tried to call us before its time, you would surely get the mailbox. Please let us know if you have another question regarding this issue.
Hello,
Here is the modified sample. I also corrected some incorrect images that you specified. Please try to see my following path and level. Notice that, when you hover into the tab, the images still persist.Regards,Handy
Hello Kenny,
Yes, we don't have any layout manager for WebDialogBox. However, if you want to have another layout, you can define it via properties or programmatic by setting the images and styles.
For more sample about our another layout, you can open ShowDialogWithAnimation.aspx or my atteched sample.
If you want to save it into the file, I suggest you to try WebStyleManager.
You can hide the element of the edit or delete button in Resources and Categories WebCombo. Before that, you will need to get the Editing form object. Please see the snippet codes below.
function WebScheduler1_OnInitialize(controlId) { var s = ISGetObject("WebScheduler1"); s.ClientSideEvents.OnInitializeResources = "WebScheduler1_OnInitializeResources"; s.ClientSideEvents.OnInitializeCategories = "WebScheduler1_OnInitializeCategories"; } function WebScheduler1_OnInitializeCategories(controlId, categories) { var s = ISGetObject(controlId); var editWindow = s.GetEditingFormWindow(); var wcCategories = editWindow.ISGetObject("wcCategories"); var rows = wcCategories.GetRows(); var categoriesHash = s.CategoriesHash; for (var i = 0; i < rows.length; i++) { var row = rows[i]; var categoryID = row.Value; var category = categoriesHash[categoryID]; var el = row.RowElement.cells[3]; el.childNodes[0].style.display = "none"; el.childNodes[2].style.display = "none"; } } function WebScheduler1_OnInitializeResources(controlId, resources) { var s = ISGetObject(controlId); var editWindow = s.GetEditingFormWindow(); var wcResources = editWindow.ISGetObject("wcResources"); var rows = wcResources.GetRows(); var resourcesHash = s.ResourcesHash; for (var i = 0; i < rows.length; i++) { var row = rows[i]; var resourceID = row.Value; var resource = resourcesHash[resourceID]; var el = row.RowElement.cells[2]; el.childNodes[0].style.display = "none"; el.childNodes[2].style.display = "none"; } }
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