Click here to Skip to main content
15,887,683 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Do you all use wysiwyg web site editors. Pin
F-ES Sitecore29-Jul-20 5:11
professionalF-ES Sitecore29-Jul-20 5:11 
GeneralRe: Do you all use wysiwyg web site editors. Pin
Ron Anders29-Jul-20 5:44
Ron Anders29-Jul-20 5:44 
RantRe: Do you all use wysiwyg web site editors. Pin
Dan Neely29-Jul-20 6:42
Dan Neely29-Jul-20 6:42 
GeneralRe: Do you all use wysiwyg web site editors. Pin
kmoorevs29-Jul-20 8:59
kmoorevs29-Jul-20 8:59 
GeneralRe: Do you all use wysiwyg web site editors. Pin
Gerry Schmitz29-Jul-20 9:08
mveGerry Schmitz29-Jul-20 9:08 
GeneralRe: Do you all use wysiwyg web site editors. Pin
Jacquers29-Jul-20 21:24
Jacquers29-Jul-20 21:24 
GeneralRe: Do you all use wysiwyg web site editors. Pin
GenJerDan29-Jul-20 21:43
GenJerDan29-Jul-20 21:43 
GeneralRe: Do you all use wysiwyg web site editors. Pin
DumpsterJuice29-Jul-20 23:54
DumpsterJuice29-Jul-20 23:54 
You didn't say what type of project you are working on, which matters a little bit.
If you are using Visual Studio Code, or Visual Studio "Classic" - the editors are a bit different.
If its an Angular Project, you can get a lot of help using Google Material Design.

Generally what I do is start out with the standard empty page (HTML)
(I think this is a repeatable pattern you can refine)

Then one by one, fill in the fields. If the elements are out of alignment,
you can adjust, using nbsp;, if you are not sure of the CSS...

take it one field at at time, and initially ignore the alignment

I suggest you make this base template your own, by using it, and adjusting it to your liking.
Moral of the story - You need a base Template that you can use over and over again.

HTML
<!-- Main Landing page rendered with  Index.HTML-->
<table class="table" [mfData]="MyList" #mf="mfDataTable" [mfRowsOnPage]="7">
    <thead>
        <tr>
             <th>
                        <!--Field 1 -->
            </th>
			<!--Field 2 etc...-->
            <th>
            </th>

            <th>
                <!--Field 2 etc...-->
            </th>
            <th>
                
            </th>
            <th>
                
            </th>
            <th>

            </th>
            <th> Update</th>
            <th> Delete </th>
        </tr>
    </thead>
    <tbody>
        <tr>
        
        </tr>
    </tbody>
    <br/>
    <br/>
    <tr>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
            <td></td>
        <td>
            <button (click)="addRiverRun()" class="btn btn-secondary">Add NewRiver Run</button>
        </td>
    </tr>
   
    <tfoot>
        <tr>
            <td border:0></td>

            <td></td>            
        </tr>
    </tfoot>
</table>


Keep It Simple, keep it moving.

modified 30-Jul-20 13:28pm.

GeneralRe: Do you all use wysiwyg web site editors. Pin
Ron Anders30-Jul-20 6:03
Ron Anders30-Jul-20 6:03 
GeneralRe: Do you all use wysiwyg web site editors. Pin
DumpsterJuice30-Jul-20 6:09
DumpsterJuice30-Jul-20 6:09 
GeneralRe: Do you all use wysiwyg web site editors. Pin
Chris Maunder30-Jul-20 7:51
cofounderChris Maunder30-Jul-20 7:51 
GeneralRe: Do you all use wysiwyg web site editors. Pin
Member 972126730-Jul-20 2:16
Member 972126730-Jul-20 2:16 
GeneralRe: Do you all use wysiwyg web site editors. Pin
Bruce Patin30-Jul-20 3:52
Bruce Patin30-Jul-20 3:52 
JokeRe: Do you all use wysiwyg web site editors. Pin
Chris Maunder30-Jul-20 7:26
cofounderChris Maunder30-Jul-20 7:26 
AnswerRe: Do you all use wysiwyg web site editors. Pin
willichan30-Jul-20 8:46
professionalwillichan30-Jul-20 8:46 
GeneralRe: Do you all use wysiwyg web site editors. Pin
John Wellbelove31-Jul-20 23:16
John Wellbelove31-Jul-20 23:16 
GeneralCCC solution Pin
Peter_in_278029-Jul-20 3:06
professionalPeter_in_278029-Jul-20 3:06 
GeneralRe: CCC solution Pin
OriginalGriff29-Jul-20 3:07
mveOriginalGriff29-Jul-20 3:07 
GeneralRe: CCC solution Pin
Greg Utas29-Jul-20 3:09
professionalGreg Utas29-Jul-20 3:09 
GeneralRe: CCC solution Pin
Peter_in_278029-Jul-20 14:50
professionalPeter_in_278029-Jul-20 14:50 
GeneralRe: CCC solution Pin
Greg Utas30-Jul-20 0:03
professionalGreg Utas30-Jul-20 0:03 
GeneralWhat a great month for me here Pin
honey the codewitch29-Jul-20 2:50
mvahoney the codewitch29-Jul-20 2:50 
GeneralRe: What a great month for me here Pin
Garth J Lancaster29-Jul-20 2:57
professionalGarth J Lancaster29-Jul-20 2:57 
GeneralRe: What a great month for me here Pin
honey the codewitch29-Jul-20 3:02
mvahoney the codewitch29-Jul-20 3:02 
GeneralRe: What a great month for me here Pin
honey the codewitch29-Jul-20 3:04
mvahoney the codewitch29-Jul-20 3:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.