I'm wondering how to modify the following 'edit' and save: statements/functionality to just show a "Link" title on the button and only have to select the "Link" button once to bring up a hyperlinked page? attached is some more code detail with snap shots, thanks! { 'command' : ['edit'], 'title': ' ', 'width': '180px' }
data-bind="source: reportDs , events: { save: onSave}"
<script type="text/x-kendo-template" id="report-template"> <h1 style="text-align:center;font-size:24px;color:darkmagenta;">Personnel Security Activity Report</h1> <div class="report-container"> <div style="margin:5px;"> <div id="gridAppUsers" data-role="grid" data-columns="[ { 'title' : 'Report', 'field' : 'reportLabel' }, { 'title' : 'Report Link', 'field' : 'reportLink' }, { 'command' : ['edit'], 'title': ' ', 'width': '180px' } ]" data-editable="inline" data-sortable="true" data-scrollable="true" data-selectable="single, row" data-bind="source: reportDs , events: { save: onSave}" > </div> </div> </div>