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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -