My problem lies with the onkeydown attribute applied to a button.
I have a wizard popup within my application and a certain step is displayed if a feature is turned on within the application.
1st step is the welcome page, we can tab to that button and hit the enter key for it to fire the next step. 2nd step display a page that has a telerik grid displayed and an asp:button below that grid that removes any checked check boxes from the grid. Tabbing to the next button here and hitting enter just performs a postback of that page and fails to move to the next step.
Clicking the button works as expected and i am calling the same function to execute the link on the onkeydown.
Key Press Code below:
function KeyPress(event, linkID, buttonID)
{
var keynum;
var e;
if (window.event)
{
e = window.event;
keynum = e.keyCode;
}
else if (event.which)
{
e = event;
keynum = e.which;
}
if (keynum == '13')
{
switch (linkID)
{
case 'ButtonBack':
ButtonClick(linkID, buttonID);
break;
case 'ButtonNext':
ButtonClick(linkID, buttonID);
break;
}
}
}
Applying the keypress to the surrounding button:
tblEnableDisable.Attributes.Add("onkeydown", "KeyPress(event, '" + button.ID + "','" + button.ClientID + "');");
Button Next click handler
private void ButtonNext_Click(object sender, EventArgs e)
{
if (IsValidForSubmit == true)
{
bool allowNext = true;
string oldStepID = CurrentStep.ID;
string nextStepID = CurrentStep.NextStepID;
if (OnStepChange != null)
{
WizardStepChangeArgs args = new WizardStepChangeArgs(WizardNavSource.NEXT,oldStepID,nextStepID);
OnStepChange(this, args);
allowNext = !args.Cancel;
nextStepID = args.TargetStepID;
}
if (allowNext)
{
SetCurrentStep(nextStepID);
if (OnStepChanged != null)
{
OnStepChanged(this,new WizardStepChangedArgs(WizardNavSource.NEXT,oldStepID,nextStepID));
}
}
}
}
I was wondering if anyone has had the same expirience with an onkeydown when a telerik grid and another asp:button is applied to the page we are trying to move away from.