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
Using the sample, we have replicated the issue in our environment. A bug report has been submitted to the developer. We will inform you if there is any update or progress regarding this issue.
We have found out that the issue with error #1A5AC6AE-7B95-478C-B422-0E994FD727D6 is cause because you are trying to install SQL Server 2005 after installing VS 2008, as described in this thread
The thread also have a suggestion you could try to solve the issue.
WebTextEditor will automatically use Right-to-Left mode if it detects the container is using Right-to-Left mode. For example, we could set the html document or the div container of the WebTextEditor to have rtl mode.
<html dir="rtl">
or
<div dir="rtl"> <ISWebTextEditor:WebTextEditor ID="WebTextEditor1" runat="server" Height="80%" Width="700px" DefaultStyleMode="ElegantBlueStyle"> <ToolBarSettings ToolBarMode="Complete" /> </ISWebTextEditor:WebTextEditor></div>
Another thread has posted the same question, please check this thread to find out the download link Full Installation Download
I have tested the snippet on our environment, it is running as expected all the opened window will be closed. Attached is the sample we are using to test the snippet in our environment.
Have you used all the latest build of WebDesktop and WebUI Framework?
Based on our developer response on the first issue, the numeric data will always be formatted as numeric even tough in the WebGrid we already format it as string. This is the default bahavior in Excel.
Regarding issue #2, the \r\n will create a new line in excel, so our workaround is using <br/> to indicate new line in the WebGrid. Other character, such as ampersand, will not conflict with excel so we will not need to replace it.
Franjo also asked:
Our custom aspx pages are embedded in Sharepoint. Users authenticate with their Active Directory login when they first visit it. When users export data from WebGrid, another Internet Explorer is started and they need to authenticate again. Only when they successfully authenticate, they can choose to open or save the file. How can this be disabled so the users don't need to authenticate?
We could not disable the authentication, however you could try using Windows Password Manager, accessible from Control Panel > User Accounts > Manage Your Network Password, to save the credential so when you visit the site you will not need to autheticate again
Attached is the code we are using to test the scenario. In our testing environment, we already use the latest WebGrid and WebUI Framework.
I will create a feature request which allow user to ungroup grouped column using column header context menu while the grouped column is not shown to allow an implementation of this feature in future release of WebGrid.
Currently, WebGrid does not have a property or function to hide the [Accept All Changes] button from the status bar. However, a workaround is available by accessing the button element and set the css display style to none. This workaround should be implemented during OnInitialize client side event. Here is the snippet:
function InitializeGrid(gridId) { var grid = ISGetObject(gridId); grid.GetElement(WG40.STATUSBARCOMMAND, WG40.HTMLROW).cells[3].childNodes[0].childNodes[0].childNodes[0].childNodes[1].style.display = "none";}
In order to bind the data to WebGrid, please use InitializeDataSource server side event. Here is the snippet:
protected void grdObj_InitializeDataSource(object sender, ISNet.WebUI.WebGrid.DataSourceEventArgs e){ //GetDataTable function will return DataTable object e.DataSource = GetDataTable();}
InitializeDataSource is recommended because this event will conform to Intersoft component life cycle, especially for the flypostback mechanism.
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