kendoui grid detail template -


in master of kendoui grid use code create style budget column

$budgetcolumn = new \kendo\ui\gridcolumn();

$budgetcolumn->field('budget')         ->width(120)         ->template('<div class="textright"> #= kendo.tostring(budget, "n") # </div>')         ->format('{0:n}')         ->title('budget'); 

i can't create style @ row installment code in detail grid template

$installmentcolumn->field('installment')         ->width(120)         ->template('<div class="textright"> #= kendo.tostring(installment, "n") # </div>')         ->format('{0:n}')         ->title('budget'); 

how create style on grid details because can not use same technique


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -