User Profile & Activity

Glenn Layaar Support
Page
of 99
Posted: September 30, 2009 5:56 AM

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.

Posted: September 30, 2009 1:02 AM

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.

Posted: September 24, 2009 4:24 AM

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>



Posted: September 24, 2009 3:21 AM

Another thread has posted the same question, please check this thread to find out the download link Full Installation Download

Posted: September 24, 2009 2:38 AM

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?

Posted: September 23, 2009 11:33 PM

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

Posted: September 23, 2009 9:52 PM

Attached is the code we are using to test the scenario. In our testing environment, we already use the latest WebGrid and WebUI Framework.


Posted: September 22, 2009 10:53 PM

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.

Posted: September 22, 2009 10:48 PM

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";
}


Posted: September 22, 2009 10:32 PM

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. 

All times are GMT -5. The time now is 7:46 AM.
Previous Next