So I was attempting to use telerik thinking that it would be easy to change how my page looks.
But it appears telerik looks just about the same as he default visual studio wizard pages.
Actually it look much more bland.
I am not sure what I was expecting from Telerik... I thought it was some type of fancy overlay that allowed users to do fancy view and stuff.
Look Like I was wrong.
So anyway what I am wanting to know is there an easy way to change a row-wise view to a column wise view without having to do all that <tr></tr> stuff.
Are there tools made for razor that would allow me to do this quickly?
At present my data displays like this:
Position Number
New Job 1234 01/30/2020
This is the Second Job Listed 2343 02/15/2020
This is an old Job Posting 3422 12/31/2019
I would Like it to display Like THis:
New Job
Position Number 1234
01/30/2020
This is the Second Job Listed
Position Number 2343
02/15/2020
This is an old Job Posting
Position Number 3422
12/31/2019
It is up to you apply styles to the <div> tags or whatever HTML you decide is appropriate. Maybe the bootstrap grid system, for example, which you can learn by reading the Bootstrap docs.
Member
148 Points
677 Posts
Is there a way to change how data is presented in an MVC view page?
Jan 21, 2020 04:20 PM|AppDev01|LINK
So I was attempting to use telerik thinking that it would be easy to change how my page looks.
But it appears telerik looks just about the same as he default visual studio wizard pages.
Actually it look much more bland.
I am not sure what I was expecting from Telerik... I thought it was some type of fancy overlay that allowed users to do fancy view and stuff.
Look Like I was wrong.
So anyway what I am wanting to know is there an easy way to change a row-wise view to a column wise view without having to do all that <tr></tr> stuff.
Or us that the only way?
Here is what I have and its Row-wise
Are there tools made for razor that would allow me to do this quickly?
At present my data displays like this:
I would Like it to display Like THis:
Thanks in advance!
All-Star
53001 Points
23596 Posts
Re: Is there a way to change how data is presented in an MVC view page?
Jan 21, 2020 04:44 PM|mgebhard|LINK
Basic HTML.
It is up to you apply styles to the <div> tags or whatever HTML you decide is appropriate. Maybe the bootstrap grid system, for example, which you can learn by reading the Bootstrap docs.
https://getbootstrap.com/docs/4.0/layout/grid/
Member
148 Points
677 Posts
Re: Is there a way to change how data is presented in an MVC view page?
Jan 21, 2020 05:48 PM|AppDev01|LINK
Thanks!!