I am using Kendo-UI with JSP-wrapper (<kendo:grid>
) . I have two JSP pages Employee.jsp
& EmployeeDetails.jsp
.the sample code for employeeDetails.jsp is given on Kendo Grid using JSP wrapper EmployeeDetails has a grid with editable_mode =popup.which is working fine.But since in Employee.jsp we have a lots of data so the popup window is very large and hard to maintain.
the output what i wanted is the popup should comes in two row with custom style sheet instead of default one row and Keno Style-sheet.
the similar functionality is achieved in this fiddle but he is using html/js , not jsp wrapper.and other problem is that he is writing the entire html code of popup in the same html page which i don't want.
[EDIT:] I find an entry point to proceed further using kendo:grid-editable.the sample code may be
<kendo:grid>
..............
..............
<kendo:grid-editable mode="popup">
<kendo:grid-editable-template>
"<h1>Deepak</h1>"
</kendo:grid-editable-template>
</kendo:grid-editable>
</kendo:grid>
but another problem still remains that we need to provide all html code between
<kendo:grid-editable-template>"....."</kendo:grid-editable-template>
can anyone help me.