85 reputation
8
bio website
location India
age 25
visits member for 10 months
seen Jun 12 at 9:24
stats profile views 5

Software developer at Orbees business solutions


Dec
27
comment How do I convert this code to JQuery
send me the code how you are calling that method and all
Dec
27
comment How do I convert this code to JQuery
mark as correct answer so it will help to others
Dec
27
comment How do I convert this code to JQuery
it will automatically takes current context
Dec
27
comment How do I convert this code to JQuery
Replace var clientContext = new SP.ClientContext(siteUrl); with this var clientContext = new SP.ClientContext.get_current(); currentweb = clientContext .get_web();
Dec
27
comment How do I convert this code to JQuery
:) press F12 again
Dec
27
comment How do I convert this code to JQuery
if not use this code _spBodyOnLoadFunctionNames.push("loadsp"); function loadsp() { ExecuteOrDelayUntilScriptLoaded(createListItem, "sp.js"); }
Dec
27
comment How do I convert this code to JQuery
have you added sp.js to your page
Dec
27
comment How do I convert this code to JQuery
no problem press F12 key and select console tab and check for the error
Dec
27
comment How do I convert this code to JQuery
are you using firefox browser if so please install firebug (addons.mozilla.org/en-US/firefox/addon/firebug) and check console tab and refresh the browser and check for error
Dec
27
answered How do I convert this code to JQuery
Dec
27
comment How do I convert this code to JQuery
_spBodyOnLoadFunctionNames.push("createListItem"); use this insteed of $(document).ready(function() { createListItem(); });
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
is there any way to call that method sync from javascript
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
what to do any idea
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
ya IE is waiting for that method to execute but why other browsers not
Dec
24
awarded  Commentator
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
On ExecuteOngetallSuccess method i am returning true on Failure returning false
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
In IE its working fine problem in other major browsers
Dec
24
revised executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
added 1424 characters in body
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
in OnValidate function i am calling the updatefeeall() method
Dec
24
comment executeQueryAsync working fine in IE problem in firefox not calling on asp button client click
here is my code <asp:Button ID="btnSave" runat="server" OnClientClick="return OnValidate();" CssClass="buttongroup" Width="80px" Text="Save" OnClick="btnSave_Click" CausesValidation="true" ValidationGroup="Submit" />