Hello,
I am using asp.net telerik(Telerik.Web.UI version 2008.1.619.35) radcombobox, when i copy paste any value in radcombobox
its not recognizing and server side event not firing, if I copy past once again(second time) its working fine.
Settings
Skin = "WebBlue";
ShowMoreResultsBox = true;
AllowCustomText = false;
MarkFirstMatch = false;
DataTextField = "Name";
DataValueField = "Id";
IsCaseSensitive = false;
EnableLoadOnDemand = true;
EmptyMessage = "-- Select One --";
EnableItemCaching = true;
First time copy paste is not all working, please suggest me if any settings I am missing.
Thanks
I am using asp.net telerik(Telerik.Web.UI version 2008.1.619.35) radcombobox, when i copy paste any value in radcombobox
its not recognizing and server side event not firing, if I copy past once again(second time) its working fine.
Settings
Skin = "WebBlue";
ShowMoreResultsBox = true;
AllowCustomText = false;
MarkFirstMatch = false;
DataTextField = "Name";
DataValueField = "Id";
IsCaseSensitive = false;
EnableLoadOnDemand = true;
EmptyMessage = "-- Select One --";
EnableItemCaching = true;
First time copy paste is not all working, please suggest me if any settings I am missing.
Thanks
8 Answers, 1 is accepted
0
Hello shiva,
Sincerely yours,
Simon
the Telerik team
Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
We are already aware of this issue and are currently working on it.
I will follow up here once we find a workaround or a solution.
Sincerely yours,
Simon
the Telerik team
Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
0
shiva
Top achievements
Rank 1
answered on 28 Jul 2009, 07:42 AM
Hello,
Please let me know solution as soon as possible its going to help me alot because my application released to production.
Thanks
Please let me know solution as soon as possible its going to help me alot because my application released to production.
Thanks
0
Hello shiva,
We resolved the issue and the fixed version will be available tomorrow. Please download the Internal Build then.
Best wishes,
Simon
the Telerik team
Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
Best wishes,
Simon
the Telerik team
Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
0
Sathya
Top achievements
Rank 1
answered on 28 Oct 2010, 09:54 AM
any updates on this ? did u fix it ?
0
Yung Yoo
Top achievements
Rank 1
answered on 23 Nov 2010, 07:19 AM
Simon,
I have same problem...
I am using the most up-to-date version(v.2010.3 1109.35) but the problem still remains.
when I paste a text in combobox and then press "enter key", I get 'script error' (Syntax error).
If I paste a text and then select the item in the dropdown, it works as expected.
If you have any workaround or solution please let me know...
thanks,
--My controls-----
<tq:RadComboBox ID="r_ddlMerchantID" runat="server" Width="180px" Height="250px" AutoPostBack="true" CausesValidation="false"
ZIndex="200000"
EmptyMessage="Select a MerchantID" EnableLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true"
OnSelectedIndexChanged="OnSelectedIndexChanged1"
OnClientItemsRequesting="OnClientItemsRequesting" >
<WebServiceSettings Method="GetMerchantID" Path="../WebService/WSmsMerchant.asmx"/>
</tq:RadComboBox>
I have same problem...
I am using the most up-to-date version(v.2010.3 1109.35) but the problem still remains.
when I paste a text in combobox and then press "enter key", I get 'script error' (Syntax error).
If I paste a text and then select the item in the dropdown, it works as expected.
If you have any workaround or solution please let me know...
thanks,
--My controls-----
<tq:RadComboBox ID="r_ddlMerchantID" runat="server" Width="180px" Height="250px" AutoPostBack="true" CausesValidation="false"
ZIndex="200000"
EmptyMessage="Select a MerchantID" EnableLoadOnDemand="true" ShowMoreResultsBox="true" EnableVirtualScrolling="true"
OnSelectedIndexChanged="OnSelectedIndexChanged1"
OnClientItemsRequesting="OnClientItemsRequesting" >
<WebServiceSettings Method="GetMerchantID" Path="../WebService/WSmsMerchant.asmx"/>
</tq:RadComboBox>
0
Hello Yung Yoo,
I was unable to reproduce the script error in this demo.
Can you also paste the implementations of the client-side OnClientItemsRequesting handler?
Regards,
Simon
the Telerik team
I was unable to reproduce the script error in this demo.
Can you also paste the implementations of the client-side OnClientItemsRequesting handler?
Regards,
Simon
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
Yung Yoo
Top achievements
Rank 1
answered on 24 Nov 2010, 10:57 PM
Simon,
The followings are client scripts i am using to pass parameters to my webservice.
thanks,
-------------------------------------------------------
var statusCombo;
var merchantCombo;
var terminalCombo;
function pageLoad()
{
statusCombo = $find("<%= r_ddlStatus.ClientID %>");
merchantCombo = $find("<%= r_ddlMerchantID.ClientID %>");
}
function OnClientItemsRequesting(sender, eventArgs)
{
var context = eventArgs.get_context();
context['Status'] = statusCombo.get_value();
context['UserId'] = document.getElementById('hdnUserId').value;
}
function ClientItemsRequestFailed(sender, eventArgs)
{
eventArgs.set_cancel(true);
}
0
Hello Yung Yoo,
Thank you for the code.
There isn't anything suspicious in your implementation.
Can you please try reproducing the error in our demos and let me know how did you do it or open a support ticket and send us a *working* page/project that shows the error?
Kind regards,
Simon
the Telerik team
Thank you for the code.
There isn't anything suspicious in your implementation.
Can you please try reproducing the error in our demos and let me know how did you do it or open a support ticket and send us a *working* page/project that shows the error?
Kind regards,
Simon
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.