jitesh goel
IndividualForum Replies Created
-
jitesh
MemberSeptember 16, 2016 at 3:14 pm in reply to: Datalist not working on iOS in Salesforce visualforce pageHi Sakshi ,
I found out a way to implement this. Firstly find out the browser and OS initially when the page loads and if it is IOS then use jquery autocomplete else we can use the standard datalist feature.
-
jitesh
MemberJune 24, 2016 at 3:35 pm in reply to: What is the use of instrumentation console in lightning experience?When we are working upon the visualforce pages and are using javascript on the page for different client side validation and processing of records then the console for this becomes a very important part of the development because it helps to see the network hits we make , change static css on the page , debug certain things , check the errors , etc . So instrumentation console is something which helps us to see the time lapsed since last load time , previous page url , session time , etc . Also , to we can record the interactions and download them in JSON format . Please let me know if this was of any help to you.
-
jitesh
MemberApril 29, 2016 at 3:49 pm in reply to: How to rerender PageBlockSection through Visualforce checkbox?Hi Gourav, you can do this :-
1) With the help of either of action function.
2) With the help of action support. -
jitesh
MemberApril 29, 2016 at 3:43 pm in reply to: Back up Salesforce data and generate reports from itThanks Ajeet for the reply but this will not work for me as a solution in the above scenario.
-
jitesh
MemberApril 26, 2016 at 11:36 am in reply to: Datalist not working on iOS in Salesforce visualforce pageThanks Gourav, but this did not work . The above link did not help me to get something related to the behavior of datalist.
-
Thanks Shalini for your response but that did not work . I think "multiple" works only for the input type="email" but I have input type="text" . It would be great if you could suggest anything else.
-
jitesh
MemberApril 14, 2016 at 8:59 am in reply to: How to hide a div when click outside of the div?Hi Prafull ,
thanks for the help but this is not allowing me to open up the div when I click on the button to show the div.
-
Thank you Prafull , that was a great help to me.
-
jitesh
MemberMarch 23, 2016 at 6:59 am in reply to: How to call the javascript function after selecting the value from the apex input list?<apex:inputText list="{!listOfStringElements}" id="userInput" html-oninput="alert(this.value);"></apex:inputText>
Use html-onInput instead of onchange . I hope this works.