Skip to main content

Posts

Showing posts from July, 2014

Kendo UI adding row at Runtime(Client Side)

You can easily add item in you kendo grid in client side. In your button or other control: <table style="clear: left"> <tr> <td> @Html.LabelFor(model => model.JV_ACCOUNT_CODE) </td> <td> @Html.TextBoxFor(model => model.JV_ACCOUNT_CODE) @Html.ValidationMessageFor(model => model.JV_ACCOUNT_CODE) </td> <td> @Html.LabelFor(model => model.JV_CurrentBalance) </td> <td> @Html.TextBoxFor(model => model.JV_CurrentBalance) @Html.ValidationMessageFor(model => model.JV_CurrentBalance) </td> </tr> </table> <br /> <table> <tr> <td> @Html.LabelFor(model => model.JV_NOTES) </td> <td> @Html.