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

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -