skip to Main Content

Jqgrid How to store a parameter as variable to reuse it in html element

I have a Jqgrid : <input type="button" name="htmlbutton" id="htmlbutton" value=""> <table id="jqGrid" ></table> <div id="jqGridPager"></div> <script type="text/javascript"> var MaingridQueryResults_1 = {{available_lessons|safe}}; $("#jqGrid").jqGrid({ datatype: 'local', data: MaingridQueryResults_1, colModel: [ {name: 'id', label: 'id', align:'left', hidden: true, width:30,}, {name: 'phone', label: 'Société',…

VIEW QUESTION
Back To Top
Search