User Profile & Activity

Product Support Moderator
Page
of 22

Yousif, I believe you'll need to run the License Manager as administrator, or turned off UAC. If you keep getting the issue, you can send an email to our support, or to nathania [at] intersoftpt.com for licensing issue.

Posted: October 19, 2009 9:48 AM

Hello George,

Some of our products have been enhanced to support Medium trust hosting permission. However, several components such as WebCombo and ISDataSource have not supported Medium trust yet. We will include the Medium trust support to all components in the upcoming hotfix. Thank you.

Posted: October 15, 2009 10:51 PM

Hi Jonathan,

Thanks for following-up on this issue.

The previous issue has actually been resolved by setting CustomSchemaRetrieval to UseWebGrid. The issue you mentioned in this post is an entirely different issue, which occurred only on Grid refresh event and the Grid is bound to ISDataSource.

We've identified the issue and will include the fix in the upcoming hotfix.

Hello Michael,

Thank you for pointing out the issue in this scenario.

We have been able to replicate your problem with the exact error message you reported, and will fix it in the upcoming hotfix.

The work item # is 431 for your tracking reference.

As an additional note for the complete solution, you'll need to clear the cached data source upon the data update process to avoid data-locking issue that may happen during the batch update process. This is only required if you're binding to datasource object through InitializeDataSource event.

For example,

protected void grdProductLine_BatchUpdate(object sender, BatchUpdateEventArgs e)
        {
            DataRowState rs = DataRowState.Added | DataRowState.Deleted;
            DataSet dsModified = ((DataSet)grdProductLine.GetCachedDataSource()).GetChanges(rs);
            if (dsModified != null)
            {
                PutDataMaintenanceProductLine(dsModified);
                grdProductLine.ClearCachedDataSource(); // clear data cache after update
            }
        }

Note: You'll need to apply the above codes _in addition_ to applying the upcoming hotfix.

Hello Michael,

Thank you for pointing out the issue in this scenario.

We have been able to replicate your problem with the exact error message you reported, and will fix it in the upcoming hotfix.

The work item # is 431 for your tracking reference.

Posted: October 9, 2009 11:14 PM

Hello Huy,

Thank you for your post. Although we have not support the auto color in this version, you can request this feature to be implemented in the next version. To do this, login to Developer Network site, and go to Community Center, then switch to Product Feedback tab and create a new feature request record.

You may have to put in the details for the feature request, eg, why you believe this feature should be implemented, what's the benefits, and so on.

 

Hi Michael,

Thanks for pointing out this issue. The issue has been fixed, please use the attached new nightly build.

Hope this helps.

Edits: If the zip file you downloaded is corrupted, please re-download again. The first uploaded version isn't completed, which is now re-uploaded. 

Posted: October 5, 2009 10:24 AM

Hello,

Thank you for selecting Intersoft WebUI Studio for ASP.NET.

Please see the answers below:

  1. Yes, the deployed version will work on server with a simple xcopy. There's no need to install our products on your server. Learn more on our easy deployment process.
  2. You can create as many projects as you desire.
  3. The term single developer means only one developer can use the product at the same time. For example, if you bought a license, then only you can use the product in development machine. If you have more developers working on the project, you'll need to buy each license for each developer.

Please feel free to ask if you have other questions.

 

Johnny,

Thanks for pointing out this issue.

There were minor issues in smart tag in the initial release, which has been fixed by our development team. The fix will be included in the upcoming hotfix due next week.

 

Posted: October 1, 2009 6:27 AM

Hi Jonathan,

Thanks for pointing out this issue.

We've included an enhancement in the upcoming hotfix for WebGrid. By setting the new property named CustomSchemaRetrieval to UseWebGrid , WebGrid will attempt to resolve the schema type using its own built-in mechanism and thus no longer call the selecting twice.

The default value of the new property is Auto which is the way it's currently implemented, requires another retrieval for schema resolution in ISDataSource level.

Hope this helps.

All times are GMT -5. The time now is 11:50 PM.
Previous Next