Thank you so much
Musa Demir
@Musa Demir
Posts made by Musa Demir
-
No Breakable Div
I am using jsreport in my project. I have a div which include table. this div is repeating alot of times. So my pdf takes more than 1 page. I want this div have to be no breakable . But jsreport write some of table rows to another page. My question is how to make no breakable div. thanks to all of you
-
What should i use in data to add line
Hi. i use jsreport in my project.
My data is include "<br/>" to add line but when i directly write this data to html (phantom pdf) its not adding line. its just adding <br/> like string. Then i change <br/> with "\n" special character.But it is also not working . How should i use this.What should i use in data to add line
Here is my simple data.
{
"test":"test data1 <br/>test data2 <br/>test data3 <br/>"
}
And i call it like this
{{test}}And the result is
test data1 <br/>test data2 <br/>test data3 <br/>But i want
test data1
test data2
test data3Can anyone help me?