User Profile & Activity

Yudi Support
Page
of 12
Posted: October 1, 2009 10:16 PM

It seems that this thread related to “webpanemanager and hebrew” thread.

The status of the original thread is solved (with post from Dicky being marked as answer).
Do you still have any unsolved issue? If you do, please make any necessary changes to Dicky’s sample so that it replicates your issue, and then have the sample send back to us for further investigation.

Posted: October 1, 2009 4:26 AM

From the attached screenshot, I suspect that the displayed error is caused by invalid proxy setting. It seems like the proxy that specified can’t access the internet.

Could you please check your proxy setting and let us know whether this helps or not.

Hope this help.

Posted: October 1, 2009 4:08 AM

Unfortunately, there is no find-method in the current build of WebGrid 7.
May be you can submit this as feature request.

Thank you for your response.

Posted: October 1, 2009 3:42 AM

In order to avoid users enter invalid data/format into filter row of DateTime data type column, I suggest you to use “CalendarDropdown” as the column EditType.

Example:

<ISWebGrid:WebGridColumn Caption="BirthDate" DataMember="BirthDate"
    DataType="System.DateTime" EditType="CalendarDropdown"
    Name="BirthDate" Width="100px">
</ISWebGrid:WebGridColumn>

By using this kind of edit type on the DateTime data type column, the column can only be edited in CalendarDropDownStyle. This will ensure that the value entered into this column will always in a proper format.

Hope this help.

Posted: October 1, 2009 1:04 AM

Unfortunately that currently we don’t have the feature to reset “Mark as answer”.

I have forwarded this valuable feedback to the development team of our community site. They will check the feasibility to fix/enhance this.

Posted: September 30, 2009 10:23 PM

You need to install Intersoft WebUI Studio 2009 R1 Service Pack 1. If you already have TDN account, please get the installer inside “My Components”.

This should help.

Posted: September 30, 2009 5:44 AM

I run the modified sample on my end and find that the background image is not loaded both in development and deployment environment. The background image is not loaded because the background image is missing its image file path (removed/deleted by you).

If I add following code in the Page_Load event, I will get the background image back.

protected void Page_Load(object sender, EventArgs e)
    {
        WebFishEyeComplexImagesBackgroundSettings settings = this.WebFishEye1.BackgroundSettings.ComplexImagesModeSettings;
        settings.Left.ImageSource = "../images/glassleftglow.png";
        settings.Center.ImageSource = "../images/glasscenterglow.png";
        settings.Right.ImageSource = "../images/glassrightglow.png";
    }

If you don’t mind, could you please kindly send us a run-able project that reproduces the issue to be investigated?

Posted: September 30, 2009 1:30 AM

WebGrid enhances its client side events by adding a method to get all pending changes. You can get all changes in WebGrid that made during BatchUpdate operation by simply using:

function WebGrid1_OnAcceptAllChanges(controlId) {

    var WebGrid1 = ISGetObject(controlId);

    WebGrid1.GetChanges();

 

    //you can implement your own verification script in here

    return true;

}

GetChanges() method will returns collection of object WebGridRowChanges. You can implement your own verification script to check whether duplicate entries are present in here.

Hope this help.

Posted: September 29, 2009 11:19 PM

Could you please provide us with more information in order to repro the issue?

I attached a simple sample of WebGrid bind to AccessDataSource control. The sample uses Northwind.mdb file as its data source. Please make any necessary changes to the sample so that it replicates the issue and then have the sample send back to us for further investigation.

Posted: September 29, 2009 6:11 AM

Thank you for the sent modified sample.

I have forwarded this to WebDesktop development team for further investigation. I’ll let you know any news/updates I heard from the team regarding this issue.

All times are GMT -5. The time now is 8:27 AM.
Previous Next