Comments on: UI-Grid: The Easiest Customization You’ll Ever Write https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/ Wed, 29 Apr 2020 09:02:00 +0000 hourly 1 By: Timothy Head https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-265 Thu, 25 Aug 2016 08:56:00 +0000 https://brianhann.com/?p=208#comment-265 Thanks Brian. CSS is not my field really so there may be knock on effects / inconsistent outcomes but I have added z-index to .grid-msg-overlay to lay it above the Grid Menu (when enabled):

]]>
By: Brian Hann https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-263 Wed, 24 Aug 2016 16:54:00 +0000 https://brianhann.com/?p=208#comment-263 You’re welcome!

]]>
By: Brian Hann https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-264 Wed, 24 Aug 2016 16:54:00 +0000 https://brianhann.com/?p=208#comment-264 Without looking at it, my guess would be adjusting the z-index.

]]>
By: Vishwam https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-262 Wed, 24 Aug 2016 06:06:00 +0000 https://brianhann.com/?p=208#comment-262 Thanks a lot.Thinks was exactly what I needed.

]]>
By: Timothy Head https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-261 Tue, 23 Aug 2016 09:48:00 +0000 https://brianhann.com/?p=208#comment-261 Thanks for the code. Very helpful. One minor note, but the Grid Menu
button is above the overlay during the load which looks a little
unusual (image included). Any ideas for moving the overlay above this Grid Menu?

]]>
By: Timothy Head https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-260 Tue, 23 Aug 2016 09:47:00 +0000 https://brianhann.com/?p=208#comment-260 Thanks for the code. Very helpful. One minor note, but the Grid Menu
button is above the overlay during the load which looks a little
unusual (image hopefully below). Any ideas for moving the overlay above this Grid Menu?

]]>
By: Timothy Head https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-259 Tue, 23 Aug 2016 09:44:00 +0000 https://brianhann.com/?p=208#comment-259 Thanks for the code. Very helpful. One minor note, but the Grid Menu button is above the overlay during the load which looks a little unusual. Any ideas for moving the overlay above this Grid Menu?

]]>
By: Erik Eckhardt https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-221 Thu, 10 Mar 2016 18:07:00 +0000 https://brianhann.com/?p=208#comment-221 Your final html markup does not include the grid-msg-overlay class anywhere. Might want to fix that.

]]>
By: Jeff Tillwick https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-219 Thu, 25 Feb 2016 19:41:00 +0000 https://brianhann.com/?p=208#comment-219 Also, how would this work for no data when a filter is applied?

]]>
By: Jeff Tillwick https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-216 Tue, 23 Feb 2016 08:30:00 +0000 https://brianhann.com/?p=208#comment-216 The class in the HTML is no-data when it should be grid-msg-overlay

]]>
By: Antonio Almeida https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-173 Sat, 28 Nov 2015 18:52:00 +0000 https://brianhann.com/?p=208#comment-173 Hi, thanks for your post.

I just modified the CSS to make the msg box size independent from main div.

/*
– 50% top and left is the div center
– height 100px and width 300px is the size of our msg box
– negative magin-top and left with half of height and width makes it centered 😉
*/
.grid-msg-overlay .msg {
opacity: 1;
position: absolute;
top: 50%;
left: 50%;
height: 100px;
width: 300px;
margin-top:-50px;
margin-left:-150px;
background-color: #eee;
border-radius: 4px;
border: 1px solid #555;
text-align: center;
font-size: 24px;
display: table;
}

Best regards from Brazil.

]]>
By: Brian Hann https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-147 Fri, 02 Oct 2015 13:01:00 +0000 https://brianhann.com/?p=208#comment-147 Thanks for the heads up!

]]>
By: Gary https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-141 Thu, 17 Sep 2015 20:11:00 +0000 https://brianhann.com/?p=208#comment-141 Thanks for the post Brian. One minor typo in your example – the index.html uses the class of ‘grid-msg-overlay’ but the style is ‘grid-overlay-msg’. Plunker example is fine as the style is ‘grid-msg-overlay’.

]]>
By: Andres Villanueva https://brianhann.com/ui-grid-the-easiest-customization-youll-ever-write/#comment-22 Sat, 23 May 2015 16:35:00 +0000 https://brianhann.com/?p=208#comment-22 Awesome post brian, thanks for share it! Regards from Venezuela…

]]>