User Profile & Activity

Hans Kristian Member
Page
of 69
Posted: December 6, 2012 12:00 AM

Hello,

I apologize for any inconvenience this problem may have caused you.

Based on your error message information, the error occurs because of ClientUI product assembly.

However, as far I know, there isn’t any ClientUI product in Intersoft 2008 R2.

Could you inform me what Intersoft product in your application? It is ASP.NET product or ClientUI product?

And would you mind to provide me the list of your assembly in your bin folder?

So I can help you to investigate this issue further more.

Regards,

Hans.

Posted: December 3, 2012 9:06 PM

Hello,

Thank you for your reply.

In my sample, I try to edit/modify the value of CompanyName column. After I select the new value, the WebCombo doesn’t reset to the default value.

Could you provide more detail how to reproduce your issue on my end?

Or could you modify my sample so that I can replicate your issue on my end?

Or if you don’t mind, could you please provide me a simple sample that replicates your issue?

So perhaps I can help you to find a work around for this issue.

Regards,

Hans.

Posted: December 3, 2012 6:09 AM

Hello,

I made a simple sample that perhaps similar with your current scenario.

I bind WebGrid and WebCombo to access data source (Northwind.mdb database and Shippers table).
I bind the WebCombo to CompanyName column of WebGrid.

Then I add some javascript validation in OnAfterItemSelected client side event of WebCombo.
The result is I can apply the new value to the WebCombo.

Please kindly have review on my sample and let me know your response.

Thank you.

Regards,
Hans.

Posted: November 29, 2012 10:05 PM

Hello,

I apologize for any inconvenience this problem may have caused you.

This issue occurs due to the WebGrid can’t find the registry for displaying WebGrid in Visual Studio’s Design View.

Based on your code in web.config, I assume you are in Deployment Phase.

And usually we don’t install Intersoft product in deployment server which means there aren’t any Intersoft’s registry in the deployment server.

Therefore, if you want to add some Intersoft control to your page, you should add the control in your development environment, not in deployment server.

Hope this helps.

Regards,

Hans.

Posted: November 27, 2012 5:18 AM

Hello,

I’m really sorry for this misunderstanding.

Now I can replicate all your issue on my end as well.

I’ll forward this issue to our developer team and I’ll let you know if there is an update for this issue.

Thank you for your understanding.

Regards,

Hans.

 

Posted: November 22, 2012 5:28 AM

Hello,

I apologize for any inconvenience this problem may have caused you.

1. By default, one WebSpellChecker only can be used by one WebTextEditor.

2. Could you provide more detail how to reproduce your issue on my end?

Or could you provide me a simple sample that replicate this issue?

3. By default, that is WebTextEditor’s behavior. You could resize the WebTextEditor by set the AllowResize property to “Yes”.

4, 5, 6. I try to make simple sample. I add one WebPaneManager and put a WebTextEditor in WebPaneManager. But unfortunately, I can’t reproduce your issue on my end.

Could you provide more detail how to reproduce your issue on my end?

Or could you tell me the configuration that I missed in my sample?

Please forgive me for lack of understanding about the reported problem.

Thank you.

Regards,

Hans.

Posted: November 21, 2012 11:44 PM

Hello,

I am sorry for the inconvenience and I sorry for the late response.

I made simple hierarchical WebGrid and try to show the column of child tables.

But unfortunately, I can’t show/hide the child table’s column as well.

If you wish to, I will forward this scenario to the developer team as a feature request.

Thank you for your understanding.

Regards,

Hans.

Hello,

I am sorry for the inconvenience and I sorry for the late response.

Thank you for the sample. I try to run your sample, but unfortunately I can’t reproduce your issue on my end.

I always get the right value of GetCheckedRows() length, either I select the row first or directly click on checkbox.

I also made a simple sample based on configuration in your sample.

I bind the WebGrid to access data source (Northwind.mdb database and Shippers table) and the GetCheckedRows() works fine as well.

Please kindly have review on my sample and let me know your response.

NB: I use WebGrid v8 and WebDesktop v3

Regards,

Hans.

Posted: November 19, 2012 11:57 PM

Hello,

I am sorry for the inconvenience. This issue occurs due to the WebGrid can’t get the object of column/cell that you hide.

I have workaround that you might try.

I made simple WebGrid sample and bind to access data source (Northwind.mdb database and Shippers table).

In my sample, I hide the CompanyName column through javascript code (in window onload).

I also add two buttons to the page sample.

The first button is to set new value in CompanyName column.

Before I set the new value to CompanyName column, I show the CompanyName that I hide in window onload.

This step is to get the object from CompanyName column.

After that, I hide the CompanyName once again.

The second button is to get the CompanyName value.

Please kindly have review on my sample and let me know your response.

Regards,



Hans.



Posted: November 19, 2012 9:13 PM

Hello,

Thank you for your reply.
Yes, it is.
Please try to modify code in Button1_Click server side event to this code below:

protected void Button1_Click(object sender, EventArgs e)
{
    WebCombo1.DataSource = allUsers;
    WebCombo1.DataTextField = "name";
    WebCombo1.DataValueField = "id";
    WebCombo1.LayoutSettings.ComboMode = ISNet.WebUI.WebCombo.Mode.MultipleColumns;
    WebCombo1.DataBind();
        
    WebCombo1.Columns[0].BaseFieldName = "id";
    WebCombo1.Columns[0].Name = "id";
    WebCombo1.Columns[0].Width = 100;
    WebCombo1.Columns[1].BaseFieldName = "name";
    WebCombo1.Columns[1].Name = "name";
    WebCombo1.Columns[1].Width = 100;
    WebCombo1.Columns[2].BaseFieldName = "email";
    WebCombo1.Columns[2].Name = "email";
    WebCombo1.Columns[2].Width = 100;
}

Hope this helps.
Regards,

Hans.

All times are GMT -5. The time now is 7:42 PM.
Previous Next