User Profile & Activity

Hans Kristian Member
Posted: October 10, 2013 2:26 AM

Hello,

Thank you for the question.

This issue occurs due to the ASP.NET Button’s ID value has changed when the Button is being rendered.
The changing happen due to us set the ClienIDMode property to “AutoID”, in web.config file.
The Button ID changed from: “btn” to “ctl00_content_btn”.
If you want to link the Button, you should modify the ControlId value from “btn” to “ctl00_content_btn” as well.

However, you could prevent the changing ID by set the ClienIDMode property to “Static”.

<asp:Button ID="btn" runat="server" Text="Button" ClientIDMode="Static" />

I attached the BasicContextMenu_Modified sample so that you could see the result.

Hope this helps.

Regards,
Hans.

Posted: October 9, 2013 10:30 PM

Hello,

Thank you for the reply.

I am sorry; I forgot to mention that you should define your data type of your column.

The error message occurs due to you haven’t define the data type or the filter expression doesn’t match with the column’s data type.

In my sample I have defined the data type:

textColumn.Name = textColumn.ColumnName = "Text";textColumn.DataType = "System.String";

Regards,
Hans.

Posted: October 9, 2013 5:56 AM
Hello,

Thank you for the question regarding WebCombo.

I use WebCombo sample, ClientBinding_ClientAPI.aspx, to find a work around that perhaps you could use.
It seems this sample (ClientBinding_ClientAPI.aspx) similar with your current scenario.

In that sample I use OnShowDropDown client side to filter the WebCombo’s result box.
Here’s the example snippet code how I filter the result box:
function wcClient_OnShowDropDown(controlId, left, top, width, height) {    var wcClient = ISGetObject("wcClient");
    var dataView = wcClient.GetView();
    if (dataView == null) {
        alert("Data is not created yet!");
        return;
    }
    else {
        if (wcClient.LastQuery != "") {
            wcClient.HideDropDown();
            dataView.Table.UserDefinedRowFilter = "[Text] like '" + wcClient.LastQuery + "%'";
            //Or you can use "[Text] contains '" + wcClient.LastQuery + "'"
            wcClient.RebindData(null, true);
        }
    }
}

Please kindly have review on the attached sample to see the result.

Hope this helps. Thank you.

Regards,
Hans.

Posted: October 8, 2013 11:36 PM
Hello,

To trigger OnMenuItemClicked server side event, please kindly set “AutoPostBack” property to “Yes”.

Here’s the example snippet code how-to set the “AutoPostBack” property:
<ISWebDesktop:WebContextMenu ID="WebContextMenu1" runat="server" ControlId="Page" onmenuitemclicked="WebContextMenu1_MenuItemClicked" AutoPostBack="Yes">

Hope this helps.

Regards,
Hans.

Hello,

I have sent you an email regarding your issue.
Please kindly check your inbox or junk mail.

Regards,
Hans.

Hello,

I am sorry for late response.

Do you want to register your Intersoft’s control or get the RunTime License Key?

The “Register Now” button is to get / generate the RunTime License Key. So if you click the “Register Now” button, the button will be replaced with the RunTime License Key.

However, now you could get the RunTime License Key through our website (http://www.intersoftpt.com/) as well.
To get your RunTime License Key in Intersoft’s website, you should log-in with your registered account. Then go to “https://intersoftpt.com/Account/Licenses”.
In that page, you could get the RunTime License Key by clicking the “Register License” button (Account_Licenses.png).

Hope this helps.

Regards,
Hans.

Posted: September 24, 2013 4:57 AM
Hello,

Thank you for your valuable feedback.

Currently, we still don’t have planned to make the website to be responsive website.

I apologize for the inconvenience and thank you for your understanding.

Regards,
Hans.
Posted: September 12, 2013 3:28 AM

Hello,

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

Here’s I attached the WebCombo sample that bounded programmatically with DataTable as the DataSource.

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

Hope this helps.

Thank you.

Regards,
Hans.

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