I've been practicing kendo ui with oracle. I made Controller class to get datas in database.
And I tried to put datas in grid columns with jstl.
First, I modified read: "Controller url" in dataSource.
Contoller class returns List<Class>, and I named it "list".
So I put template: "<div class='channelNumber'>#:CH_NO</div>" in columns for first try, but it never seemed to work.
and I tried other way, jstl.
I put template: "<div class='channelNumber'>${list.ch_no}</div>"
and also tried template: "<div class='channelNumber'>" +${list.ch_no}+ "</div>"
but nothing comes up with any of them.
How can I get datas using Oracle?
Do I necessarily use PHP or JSON?