This is a migrated thread and some comments may be shown as answers.

Problem with button in grid

0 Answers 85 Views
Grid
This is a migrated thread and some comments may be shown as answers.
T
Top achievements
Rank 1
T asked on 06 Feb 2012, 10:43 PM
Hi
I'm trying to put a button into grid. In order to achieve that I wanted to use rowTemplates. However I have a problem with geting and item id and put it into action parameter.
So far I these  constructinos
<script id="rowTemplate" type="text/x-kendo-tmpl">
                <tr>
                    <td>
                    <form action="/Home/EditProduct/?id="+ "#=Id#" class="addEditButton" method="post">
                        <submit type="button" value="Edytuj"/>
                    </form>
                      </td>
                </tr>
    </script>
 
<script id="rowTemplate" type="text/x-kendo-tmpl">
                <tr>
                    <td>
                    <form action="/Home/EditProduct/?id="+ ${ Id } class="addEditButton" method="post">
                        <submit type="button" value="Edytuj"/>
                    </form>
                      </td>
                </tr>
    </script>
 
<script id="rowTemplate" type="text/x-kendo-tmpl">
                <tr>
                    <td>
                    <form action="/Home/EditProduct/?id=${ Id }"  class="addEditButton" method="post">
                        <submit type="button" value="Edytuj"/>
                    </form>
                      </td>
                </tr>
    </script
 
<script id="rowTemplate" type="text/x-kendo-tmpl">
                <tr>
                    <td>
                    <form action="/Home/EditProduct/?id=${ Id }  class="addEditButton" method="post">
                        <submit type="button" value="Edytuj"/>
                    </form>
                      </td>
                </tr>
    </script
However non of this method can successfully retrieve value of id parameter from object bounded to row. Is it possible to somehow pass value of id into action ??

No answers yet. Maybe you can help?

Tags
Grid
Asked by
T
Top achievements
Rank 1
Share this question
or