load-time

Does display:none keep elements from loading?

安稳与你 提交于 2019-11-28 11:28:49
I have a large video file that I want to put on my main page. I don't want it to bog down the loading time, so I was thinking I could just set it to display:none and then change the display after the page loads. Would this work? Would this work? Nope. display: none will only prevent the element from being displayed; it will be loaded nevertheless. You can watch this happen in the element inspector of your choice (e.g. in Firebug or IE8's dev tools). The best way is probably to create the Video element using JavaScript afterwards, or - if you want a fail-safe solution in case JS is turned off -

triggering client-side filtering at load time in a jqGrid

冷暖自知 提交于 2019-11-27 07:07:03
问题 I'm trying to get a JqGrid to do some client-side filtering (and sorting) just after it has finished loading in the data. I can set the search-field correctly, but calling TriggerToolbar() doesn't seem to have any effect. $("#list").GridUnload(); var mygrid = $("#list").jqGrid({ url: '@Url.Action("GetSearchCriteriaWithNoComponents", "SearchCriteria")', postData: { BookingSiteId: function () { return $("#BookingSiteId option:selected").val(); }, MethodId: function () { return $("#MethodId