function
keyboardActions(event) {
if
(event.keyCode == 13) {
eval($(
"#<%=btnSearch.ClientID %>"
).trigger(
'click'
));
// Doesn't work with RadButton Q3.2010
return
false
;
}
// other keypressed other actions ?
}
// If the client press ENTER, the Search button is clicked.
$(document).ready(
function
() {
if
($.browser.mozilla) {
$(
"#<%=txtName.ClientID %>"
).keypress(keyboardActions);
$(
"#<%=txtCode.ClientID %>"
).keypress(keyboardActions);
}
else
{
$(
"#<%=txtName.ClientID %>"
).keydown(keyboardActions);
$(
"#<%=txtCode.ClientID %>"
).keydown(keyboardActions);
}
});
Hello,
I am displaying several RadSliders within a RadListView inside of a 'load on demand' RadTabStrip, and I am getting a rendering issue with the RadSlider on all browsers.
After my ‘compatibility’ tab loads the RadSliders look as you see them in ImageA. You will notice that I have placed one test RadSlider outside of the RadListView which also displays incorrectly.
If I click on my ‘profile’ tab and then back to my ‘compatibility’ tab the RadSliders will display correctly and as expected in ImageB.
Does anyone know how to correct this issue?
Best regards,
~Dean
dataComboBox.SelectedIndexChanged += new RadComboBoxSelectedIndexChangedEventHandler(this.dataComboBox_SelectedItemChanged);
Could not load file or assembly 'Microsoft.SqlServer.Management.Sdk.Sfc, Version=10.0.0.0, Culture=neutral, PublicKey Token=89845dcd8080cc91' or one of its dependecies. The system cannot find the file specified.
It seems that this used to work before installing the Telerik controls or maybe it's just been a while since I've done this. Thanks for any help.
function onAppointmentContextMenuItemClicked(sender, args) {
switch (args.get_item().get_value()) {
case "CommandDelete":
if (args.get_appointment().get_id().startsWith('booking'))
type = "booking";
else if (args.get_appointment().get_id().startsWith('fixture'))
type = "fixture";
if (!confirm("Are you sure you want to delete this " + type)) {
args.set_cancel(true);
}
break;
}
}