I have a store on my page:

<ext:Store 
    ID="Store1" 
    runat="server" 
    OnAfterStoreChanged="Store1_AfterChanged" 
    OnRefreshData="MyData_Refresh">
    <Reader>
        <ext:JsonReader>
            <Fields>                                    
                <ext:RecordField Name="Name" />
                <ext:RecordField Name="Id" />             
            </Fields>
        </ext:JsonReader>
    </Reader>
</ext:Store>

I need to run JavaScript code after the Store1_AfterChanged event executes. If it were defined via the DirectEvents section, I could use the After attribute.
How to do it when the event is defined this way (as an attribute of the Store)?

link|improve this question

feedback

3 Answers

Try to define script via ResourceManager in Event method:

X.ResourceManager.RegisterClientScriptBlock("After", "Ext.Msg.alert('After');");
link|improve this answer
feedback
up vote 0 down vote accepted

I found that I can execute a JS function call from the C# event handler by calling

X.Call("function_name", arguments)

link|improve this answer
feedback

You can register any script with

ScriptManager.RegisterStartupScript

method from your code behind

update: then maybe this link may help: http://www.dotnetcurry.com/ShowArticle.aspx?ID=256

link|improve this answer
I do not need a startup script; I need to call a JS function after one specific event was executed. – ver Dec 12 '11 at 14:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.