1.Infrastructure Architect 2.Software Architect 3.Enterprise Architect Now we can see the above with some more detail. 1.Infrastructure Architect This architect is responsible for all non-software components such as Network,VM and so on. 2.Software Architect This architect always looks at the end result first, and only the starts looking at technologies, methodologies etc. They focus on fast, secure, reliable and easy to maintain software.
In this lesson we are going to learn about some basic measurements.We must know about these measurements . Because these are essential in our regular day to day life.If we don't know this we are may cheated. 1 centimetre=10millimetre 1metre=100 centimetre 1kilometre=1000 metre Km->m(1000)->cm(100)->mm(10) 1 feet=30.48 centimetre 1 inch=2.54 centimetre
In this session we are going to see about searching the specific text in the html table.This is very useful most of the times rather bind data each time while searching.So here i have one textbox and one html table .In our case we have to display the input text from the table if exists.So here we go Jquery var findtext =$('#txtsearch').val(); if($.trim(findtext)!=' ') { $("#tbltext tbody tr").hide(); $('#tbltext tbody tr').each(function () { if ($.trim($(this).find('td').eq(1).text()) == $.trim(findtext)) { $(this).show(); } }); } else { $("#tbltext tbody tr").show(); } HTML <input type='text' id ='txtsearch'> </br> <table id='tbltext' > <thead> <tr> <th>No.</th><th>Name</th><th>Age</th> </tr> </thead> <tbody> <tr><td>1</td><td>Hello</td><td>10</td...
Comments
Post a Comment