Serenity.LazyLoadHelper.ExecuteEverytimeWhenShown C# (CSharp) Method

ExecuteEverytimeWhenShown() public static method

public static ExecuteEverytimeWhenShown ( jQueryObject element, System.Action callback, bool callNowIfVisible ) : void
element jQueryObject
callback System.Action
callNowIfVisible bool
return void
        public static void ExecuteEverytimeWhenShown(jQueryObject element, Action callback,
            bool callNowIfVisible)
        {
        }
    }

Usage Example

Exemplo n.º 1
0
 public static void TriggerLayoutOnShow(jQueryObject element)
 {
     LazyLoadHelper.ExecuteEverytimeWhenShown(element, () =>
     {
         element.TriggerHandler("layout");
     }, true);
 }
All Usage Examples Of Serenity.LazyLoadHelper::ExecuteEverytimeWhenShown