Unplanned
Last Updated: 04 Mar 2018 19:05 by Jon Morris
ADMIN
Attila Antal
Created on: 11 Dec 2017 11:12
Category: ComboBox
Type: Bug Report
3
RequireFieldValidator not validating the EmptyMessage of RadComboBox
If the same text is typed into the input field as the one set for EmptyMessage and page is submitted, validator evaluates True.

Current workaround is to subscribe the RadComboBox to OnClientFocus client event handler, and clear the EmptyMessage manually, thus preventing the EmptyMessage text to be sent to server.

<telerik:RadComboBox ... OnClientFocus="comboFocus">

<script type="text/javascript">
	function comboFocus(sender, args) {
		sender.set_emptyMessage("");
	}
</script>
2 comments
Jon Morris
Posted on: 04 Mar 2018 19:05
Hey Attila,

This has been an approved bug for almost 3 months!  Why isn't it fixed or scheduled to be fixed yet!!!  We pay a lot for the Telerik license and expect known bugs to be fixed in a timely manner!

Please advise.
Jon Morris
Posted on: 11 Dec 2017 18:24
When a validator validates as TRUE when it is FALSE, there can be serious consequences - logical and financial.  Since comboboxes are so prevalent in web applications (in the 100's), coding and testing the workaround (and then removing it) can take a couple of days.  Please schedule this fix ASAP!