문제

I am using Telerik in ASP.NET 4.0. Is there is any client side event which triggers while the edit or insert forms show?

I need to perform some action in that event.

도움이 되었습니까?

해결책

For now I am using,

              Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(pageLoad);

다른 팁

Add the event handler for all RadGrid commands in your grid by doing the following:

<telerik:RadGrid ...
    <ClientSettings>
        <ClientEvents OnCommand="GridCommand" ...

Then figure out what command was called in this JavaScript function:

function GridCommand (sender, args) {
    if (args.get_commandName() === "Edit") {
        // do something!
    }
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top