How can I solve append issue for an image using ajax - asp.net-mvc-3
My first script provides to random image as you can see below
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<!-- include Cycle plugin -->
<script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.all.latest.js"></script>
<script type="text/javascript">
var $t = jQuery.noConflict();
$t(function () {
$t('.slideshow').cycle({
fx: 'fade'
});
});
</script>
It works when I add some images like that
<div class="news_area_left">
<div class="slideshow" style="position: relative; ">
<img src="../../banner_image/nemo.jpg" width="154px" height="108px"/>
<img src="../../banner_image/up.jpg" width="154px" height="108px" />
</div>
</div>
But when I add my second script which get images as you can see
<script type="text/javascript">
$(function () {
$.ajax({
type: "get", url: "Home/Oku", data: {}, dataType: "json",
success: function (data) {
for (var i = 0; i < data.length; i++) {
var newFirmDiv= $(' <img src="../../banner_image/' + data[i] + '" width="154px" height="108px"/>');
$(".slideshow").append(newFirmDiv);
}
}
});
});
</script>
Finally I try to use my dynamic images in my "slideshow div" but the effect does not work
<div class="news_area_left">
<div class="slideshow" style="position: relative; ">
</div>
</div>
You need to run $t('.slideshow').cycle after you have dynamically inserted your images. Also you need to append to the "slideshow" class and not the "firmShowCase" class.
See this jsFiddle I've created http://jsfiddle.net/davew9999/sgUeq/
HTML
<div class="news_area_left">
<div class="slideshow" style="position: relative; ">
<img src="http://activephilosophy.files.wordpress.com/2009/09/number1.jpg" width="154px" height="108px"/>
<img src="http://www.clker.com/cliparts/h/Y/i/C/Y/W/red-rounded-square-with-number-2-md.png" width="154px" height="108px"/>
</div>
</div>
JavaScript
var $t = jQuery.noConflict();
var newFirmDiv = $t('<img src="http://www.mosamuse.com/wp-content/uploads/2012/05/number3.png" width="154px" height="108px"/>');
$t(".slideshow").append(newFirmDiv);
var anotherDiv = $t('<img src="http://2.bp.blogspot.com/-_A_8UYb0zIQ/Te5lpI9iZ3I/AAAAAAABgWk/sErDyHjEhPw/s1600/number-4.jpg" width="154px" height="108px"/>');
$t(".slideshow").append(anotherDiv);
$t(function() {
$t('.slideshow').cycle({
fx: 'fade'
});
});
Related
Google Picker Search only inside parent folder
I am using setParent() to show a particular folder only in Google picker but searching lists all the files and folders. I want search results restricted to parent folder. Is this possible?
As far as I can tell there is no way to do this with the picker API. One hack is to filter for starred files but that is usually not helpful because you probably just want to set one directory/folder to search inside. In the end I had to use the Google Drive API instead and create my own interface <!-- index.html --> <!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap#5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> <!-- Font Awesome --> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" /> <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.7.7/handlebars.min.js" integrity="sha512-RNLkV3d+aLtfcpEyFG8jRbnWHxUqVZozacROI4J2F1sTaDqo1dPQYs01OMi1t1w9Y2FdbSCDSQ2ZVdAC8bzgAg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script> <script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script> </head> <body style="background-color: rgb(221, 238, 232);"> <div style="max-width: 1100px; margin: auto;" class="conainer mt-5"> <div class="row text-center mt-5"> <div class="col-10 ms-5"> <div class="d-flex"> <input type="search" class="form-control me-2" id="search_input" oninput="search(event)" placeholder="Search" aria-label="Search"> <button type="button" class="btn btn-primary" oninput="search(event)"> <i class="fas fa-search"></i> </button> </div> </div> <div class="row text-center mt-5 "> <div class="col-10 ms-5" style="background-color: white; border-radius: 5px;"> <template type="text/x-handlebars-template" id="documentsTemplate"> <div class="row mt-2 mb-2"> {{#if documents.length}} {{#each documents}} <div class="col-2 mt-2"> <div style="height: 200px; width:150px; background-color: white; border-radius: 5px; border: solid 1px; border-color: lightblue;"> <img style="height: 150px; width:150px;" src="{{thumbnailLink}}" /> <input class="form-check-input" type="checkbox" value=""> {{name}} </div> </div> {{/each}} {{else}} <div style="height: 200px; width:100%; background-color: white; text-align: center; font-size: 2vw; margin: 0 auto;"> No Results </div> {{/if}} </div> </template> <div id="documentsList"></div> </div> </div> </div> </div> <script type="module" src="script.js"></script> <!-- <script src="https://apis.google.com/js/platform.js"></script> --> <script src="https://apis.google.com/js/api.js"></script> <!-- Option 1: Bootstrap Bundle with Popper --> <script src="https://cdn.jsdelivr.net/npm/bootstrap#5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> </body> </html> //script.js //import { google_client_id } from "./utils/configs.js" // get this from 'APIs and Services'>credentials>Oauth app const google_client_id=XXXXX (function() { // Use the API Loader script to load google.picker and gapi.auth. function onApiLoad() { gapi.load('auth2', onAuthApiLoad); gapi.load('picker', onPickerApiLoad); } globalThis.search = (event) => { clearTimeout(globalThis.searchTimeout); globalThis.searchTimeout = setTimeout(() => { getTemplateFolder() .then(searchFiles) }, 1000) } document.getElementById('search_input').addEventListener("keyup", function(event) { // Number 13 is the "Enter" key on the keyboard var key = event.key || event.keyCode; if (key === 13) { // Cancel the default action, if needed event.preventDefault(); search(event); } }); gapi.load('client:auth2', (aa) => { gapi.client.init({ client_id: google_client_id, scope: 'https://www.googleapis.com/auth/drive', discoveryDocs: ["https://www.googleapis.com/discovery/v1/apis/drive/v3/rest"], }) .then(checkSession) .then(function() { return getTemplateFolder(); }) .then(function(folder) { return getFiles(folder); }); }); function checkSession() { if (!gapi.auth2.getAuthInstance().isSignedIn.get()) { return gapi.auth2.getAuthInstance().signIn(); } } function getTemplateFolder() { return gapi.client.drive.files.list({ q: "mimeType = 'application/vnd.google-apps.folder' and name = 'XXXXXX' and trashed = false", pageSize: 10, fields: 'nextPageToken, files(id, name)', }).then(function(response) { console.log(response); return response.result.files[0]; }); } function getFiles(templateFolder) { return gapi.client.drive.files.list({ q: `'${templateFolder.id}' in parents and trashed = false`, pageSize: 10, fields: 'nextPageToken, files(id, name, mimeType, thumbnailLink)', }).then(function(response) { console.log(response); var template = Handlebars.compile(document.querySelector("#documentsTemplate").innerHTML); document.querySelector("#documentsList").innerHTML = template({ documents: response.result.files }); return response.result.files; }); } function searchFiles(templateFolder) { return gapi.client.drive.files.list({ q: `'${templateFolder.id}' in parents and fullText contains '${document.getElementById("search_input").value}' and trashed = false`, pageSize: 10, fields: 'nextPageToken, files(id, name, mimeType, thumbnailLink)', }).then(function(response) { console.log(response); var template = Handlebars.compile(document.querySelector("#documentsTemplate").innerHTML); document.querySelector("#documentsList").innerHTML = template({ documents: response.result.files }); return response.result.files; }); } })(); Make sure to add the google_client_id and the directory name you want to filter by.
access items in a nested list in angularJS
I am new to AngularJS and i need your help. I have created a JSON file which consists of a list of items inside another list. I want to access the items in the second list but I don't know how. I have searched all day in the Internet but I hardly found anything useful. Please help me. Below is my code: categoryItems.json [ { "$id":"1", "name":"Business", "cat":[ { "cname":"CyberSecurity", "img":"img3_1.jpg", "cat_kurs":"7-course specialization", "txt":"Rice University" }, { "cname":"Google Cloud Platform for Systems Operations", "img":"img3_2.jpg", "cat_kurs":"6-course specialization", "txt":"University of California" }, { "cname":"Data Security", "img":"img3_1.jpg", "cat_kurs":"7-course specialization", "txt":"Rice University" } ] }, { "$id":"2", "name":"Foreign Language", "cat":[ { "cname":"Data Security", "img":"img3_1.jpg", "cat_kurs":"7-course specialization", "txt":"Rice University" }, { "cname":"Google Cloud", "img":"img3_2.jpg", "cat_kurs":"3-course specialization", "txt":"University of California" } ] } ] script.js var myItemsApp = angular.module('myItemsApp', []); myItemsApp.factory('itemsFactory', ['$http', function($http){ var itemsFactory ={ itemDetails: function() { return $http( { url: "categoryItems.json", method: "GET", }) .then(function (response) { return response.data; angular.forEach(data.itemDetails, function(item) { }); }); } }; return itemsFactory; }]); myItemsApp.controller('ItemsController', ['$scope', 'itemsFactory', function($scope, itemsFactory){ var promise = itemsFactory.itemDetails(); promise.then(function (data) { $scope.itemDetails = data; console.log(data); }); $scope.select = function(item) { $scope.selected = item; }; $scope.selected = {}; }]); index.html <!DOCTYPE html> <html ng-app="myItemsApp"> <head> <meta charset="utf-8" /> <title>Test</title> <!-- <link data-require="bootstrap-css" data-semver="3.1.1" rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" />--> <link href="css/bootstrap.min.css" rel="stylesheet" media="screen" /> <link href="css/bootstrap-theme.min.css" rel="stylesheet" media="screen"/> <script src="js/angular.min.js"></script> <script src="js/angular.js"></script> <script src="script.js"></script> <style> span.el{ background-color:#85929E; font-size: xx-small; font-color: #FDFEFE; width: 60px; } span.txt{ font-size:xx-small; } div.cat{ background-color:#F2F3F4 ; } </style> </head> <body> <div ng-controller="ItemsController"> <div class="row"> <div class="col-md-4"> <div class="panel panel-default"> <ul class="list-group"> <a class="list-group-item" ng-click="select(item)" ng-repeat="item in itemDetails">{{item.name}}</a> </ul> </div> </div> <div class="col-md-8"> <div class="panel panel-default" style="width: 70%"> <div class="panel-heading">{{selected.name}}</div> <div class="panel-body"> <div ng-repeat="subcat in item.cat "> {{subcat.cname}} </div> </div> </div> </div> </div> </body> </html> Please HELP ME.
Looks like you need todo another ng-repeat on the sub categories. <div class="col-md-8" ng-show="selected.name.length"> <div class="panel panel-default" style="width: 70%"> <div class="panel-heading">{{selected.name}}</div> <div class="panel-body"> <div ng-repeat="subcat in itemDetails | filter:{name:selected.name}"> <div ng-repeat="cat in subcat.cat"> {{cat.cname}} </div> </div> </div> </div> Have a look at this example ive mocked up for you
You need to deserialize the response using angular.fromJson more reference: https://docs.angularjs.org/api/ng/function/angular.fromJson
two jqgrid no data loaded
When I duplicate a working grid with a different id, data are not loaded in both grid. Both grids are shown and they both query the same url. Json data is sent from php but data is not loaded into grid. If i comment any of the grids, the other one loads data properly. Any help greatly appreciated. I'm using jqgrid 4.4.1 Here is my code <div class="row-fluid"> <script type="text/javascript" language="javascript"> function LoadgridInput () { jQuery('#gridInput').jqGrid({ height:100, hoverrows:false, viewrecords:true, caption:" ",cellEdit: true,rowNum:10000, scroll:1, rowList:[30,100,500], datatype:"json", url:"grid.php?sec=Agility&fn=gcSandFInput_V1", cellurl:"grid.php?sec=Agility&fn=gcSandFInput_V1", editurl:"grid.php?sec=Agility&fn=gcSandFInput_V1", sortname:"default", autowidth:true, shrinkToFit:true, gridview:false, pager:"#gridInputPager", postData:{oper:"grid"}, jsonReader:{repeatitems:false,root: "rows",page: "page",total: "total",records: "records",repeatitems: true,cell: "cell",id: "id",userdata: "userdata"}, colModel:[ {name:" ",index:"nope",align:"left",search:true,editable:false,width:60},{name:"04-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"05-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"06-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"07-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"08-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"09-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"10-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"11-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"12-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"01-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"02-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"03-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"04-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"05-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"06-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"07-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"08-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"09-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"10-2013",index:"nope",align:"left",search:true,editable:false,width:60 }]}) jQuery('#gridInput').jqGrid('navGrid','#gridInputPager',{refresh:true,edit:false,add:false,del:false,search:true,view:false,"excel":true,"pdf":false,"csv":false,"columns":false},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150,"errorTextFormat":function(r){ return r.responseText;}},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150,"errorTextFormat":function(r){ return r.responseText;}},{"errorTextFormat":function(r){ return r.responseText;}}, {"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150,"closeAfterSearch":true,"multipleSearch":false},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150}); }; </script> <script type="text/javascript" language="javascript"> runOnLoad(LoadgridInput); </script> <div id="gridInputWrapper"> <table id="gridInput"></table> <div id="gridInputPager"></div> <div class="gridInputFooter"></div> </div> </div> <div class="row-fluid"> <script type="text/javascript" language="javascript"> function LoadgridList () { jQuery('#gridList').jqGrid({ height:100, hoverrows:false, viewrecords:true, caption:" ",cellEdit: true,rowNum:10000, scroll:1, rowList:[30,100,500], datatype:"json", url:"grid.php?sec=Agility&fn=gcSandFInput_V1", cellurl:"grid.php?sec=Agility&fn=gcSandFInput_V1", editurl:"grid.php?sec=Agility&fn=gcSandFInput_V1", sortname:"default", autowidth:true, shrinkToFit:true, gridview:false, pager:"#gridListPager", postData:{oper:"grid"}, jsonReader:{repeatitems:false,root: "rows",page: "page",total: "total",records: "records",repeatitems: true,cell: "cell",id: "id",userdata: "userdata"}, colModel:[ {name:" ",index:"nope",align:"left",search:true,editable:false,width:60},{name:"04-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"05-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"06-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"07-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"08-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"09-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"10-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"11-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"12-2012",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"01-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"02-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"03-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"04-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"05-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"06-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"07-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"08-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"09-2013",index:"nope",align:"left",search:true,editable:false,width:60 },{name:"10-2013",index:"nope",align:"left",search:true,editable:false,width:60 }]}) jQuery('#gridList').jqGrid('navGrid','#gridListPager',{refresh:true,edit:false,add:false,del:false,search:true,view:false,"excel":true,"pdf":false,"csv":false,"columns":false},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150,"errorTextFormat":function(r){ return r.responseText;}},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150,"errorTextFormat":function(r){ return r.responseText;}},{"errorTextFormat":function(r){ return r.responseText;}}, {"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150,"closeAfterSearch":true,"multipleSearch":false},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150},{"drag":true,"resize":true,"closeOnEscape":true,"dataheight":150}); }; </script> <script type="text/javascript" language="javascript">runOnLoad(LoadgridList);</script> <div id="gridListWrapper"> <table id="gridList"></table> <div id="gridListPager"></div> <div class="gridListFooter"></div> </div> </div>
How to center an image in the viewport with unknown height?
I'm creating an image gallery using BxSlider (http://bxslider.com) and would like to center the image both horizontally and vertically in the viewport. I am also using a resizing script so don't know the dimensions of my images. I have tried all kinds of scripts that I've found through Google but nothing seems to be working. This is my html: <div id="myDiv"> <div><img src="" /></div> <div><img src="" /></div> <div><img src="" /></div> </div> My BxSlider code: <script src="https://raw.github.com/wandoledzep/bxslider/master/jquery.bxSlider.min.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function(){ $('#myDiv').bxSlider({ mode: 'fade', captions: true, }); }); </script> And my resizing code: function resizeImg() { var h = $(window).height(); if (840 > h) { var bw = h - 210; $('img').attr('height',bw); //alert('Height: '+h); // post-container-image } } jQuery(document).ready(function(){ var h = $(window).height(); if (840 > h) { resizeImg(); } }); $(window).resize(function(){ var h = $(window).height(); if (840 > h) { resizeImg(); } });
Ajax call fail when I can trying to pass the special characters as data
This is the code I am using to add a comment using Ajax call. <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"/> <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile- 1.1.0-rc.1.min.css" /> <script type="text/javascript" charset="utf-8" src="js/cordova-1.5.0.js"> </script> <script src="http://code.jquery.com/jquery-1.7.1.min.js"></script> <script src="http://code.jquery.com/mobile/1.1.0-rc.1/jquery.mobile-1.1.0-rc.1.min.js"></script> <script src="js/global.js" type="text/javascript"></script> </head> <script> var msgId = window.localStorage.getItem("clickedId"); processLogInData = function(){ var comment = ($("#comment").val()); temp = 'messageId=' + msgId +'&'; temp += 'uniqueId=' + device.uuid + '&'; temp += 'comments=' + comment; var s= global1 +"rest/Comment/createCommentBO?"+temp; $.ajax({ url:global1 +"rest/Comment/createCommentBO?", data: temp, dataType: 'xml', timeout: 10000, async: false, cache: false, type: 'POST', success: function(data){ if($(data).find("isException").text() == "false") { //alert('No Exceptions found'); onTrue(); } else { onFalse(); } }, error:function(XMLHttpRequest,textStatus, errorThrown) { // alert("Error status :"+textStatus); // alert("Error type :"+errorThrown); alert("Error message :"+XMLHttpRequest.responseXML); $("#messagelist").append( XMLHttpRequest.responseXML); } }); } function onTrue(){ location.replace("comments.html"); } function onFalse() { console.log("onFalse Method"); alert("Unable to create Comment!"); } function cancel(){ location.replace("comments.html"); } </script> <body> <div data-role="page" data-theme="a"> <div data-theme="a" data-role="header"> <img src="images/logo_header.png" alt="Orange"/> </div> <div data-role="content"> <form method="post" name="login" data-ajax="false"> <label for="textarea"><h3><u>Add Comment</u> : </h3></label> <textarea cols="15" rows="15" name="textarea" id="comment"></textarea> </form> <div> <div class="ui-block-a"><button type="submit" data-theme="d" onclick="cancel();" data-mini="true" data-icon="delete">Cancel</button></div> <div class="ui-block-b"><button type="submit" data-theme="a" onclick="processLogInData();" data-mini="true" data-icon="check" >Submit</button></div> </div> </div> </div> </body> When I enter special character as content as pass it to Ajax call I am getting an error :( Ajax call works fine with out any special characters... Is there any way to encode the data before passing it to ajax call???Please help me on this... Thanks in advance.
(1.)Either you should put your data into a form and serialize it and then send to the server (2.)Second way is you can use the js inbuilt function encodeURIComponent().